webhookSubscriptions
Retrieves a list of all webhook subscriptions.
This query implements the GraphQL Cursor Connections Specification for paging query results with some limitations.
Limitations
- The
first
andafter
arguments must be used together. - The
last
andbefore
arguments must be used together. - If both
after
andbefore
are specified thenbefore
will be ignored.
webhookSubscriptions(
after: String
before: String
first: WebhookPaginationLimit! = 50
last: WebhookPaginationLimit! = 50
): WebhookSubscriptionConnection!
Arguments
webhookSubscriptions.after
● String
scalar
A cursor value used with the first
argument to return the elements in the list that come after it. Optional.
This field is used to paginate through the result list.
webhookSubscriptions.before
● String
scalar
A cursor value used with the last
argument to return the elements in the list that come before it. Optional.
This field is used to paginate through the result list.
webhookSubscriptions.first
● WebhookPaginationLimit!
non-null scalar
Specifies the number of elements to return from the list from the after
cursor value. Valid values are in the range from 1
to 250
. Defaults to 50
.
webhookSubscriptions.last
● WebhookPaginationLimit!
non-null scalar
Specifies the number of elements to return from the list from the before
cursor value. Valid values are in the range from 1
to 250
. Defaults to 50
.
Type
WebhookSubscriptionConnection
object
The connection type for WebhookSubscription
.