webhookMessageDeliveryAttempts
Retrieves a list of delivery attempts for a webhook message. Throws an error with code NOT_FOUND
if webhookMessageId
cannot be found.
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.
webhookMessageDeliveryAttempts(
after: String
before: String
first: WebhookPaginationLimit! = 50
last: WebhookPaginationLimit! = 50
webhookMessageId: ID!
): WebhookMessageDeliveryAttemptConnection!
Arguments
webhookMessageDeliveryAttempts.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.
webhookMessageDeliveryAttempts.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.
webhookMessageDeliveryAttempts.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
.
webhookMessageDeliveryAttempts.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
.
webhookMessageDeliveryAttempts.webhookMessageId
● ID!
non-null scalar
Type
WebhookMessageDeliveryAttemptConnection
object
The connection type for WebhookMessageDeliveryAttempt
.