DEV

Query.

webhookLogs

Returns a list of WebhookLog resources.

Arguments

after

String

Returns the elements in the list that come after the specified cursor.

before

String

Returns the elements in the list that come before the specified cursor.
Filter the results by the given search term.

first

Int

Returns up to the first n elements from the list.

last

Int

Returns up to the last n elements from the list.
GraphQL
1
2
3
type Query {
  webhookLogs(after: String, before: String, filter: WebhookLogsFilterInput, first: Int, last: Int): WebhookLogConnection!
}

Was this page helpful?