webhookEventTypes
Retrieves a list of all webhook event types.
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.
webhookEventTypes(
after: String
before: String
first: WebhookPaginationLimit! = 50
last: WebhookPaginationLimit! = 50
): WebhookEventTypeConnection!
Arguments
webhookEventTypes.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.
webhookEventTypes.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.
webhookEventTypes.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
.
webhookEventTypes.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
WebhookEventTypeConnection
object
The connection type for WebhookEventType
.