webhookConfigurations
Paginated list of webhook configurations for a tenant
This page contains
Arguments
tenant String | Tenant |
first Int | Number of results to fetch forwards |
after String | Cursor after which to fetch forwards |
last Int | Number of results to fetch backwards |
before String | Cursor before which to fetch backwards |
filter WebhookConfigurationFilter | Filter for webhook configurations |
Return Fields
WebhookConfigurationConnection! | Paginated result for webhook configurations by tenant |
Interactive example
This is an example query. Use the embedded interactive tool below to edit the query.
Hint: use Ctrl + Space for autocompleting fields.
xxxxxxxxxx
query webhookConfigurations($tenant: String, $first: Int, $after: String, $last: Int, $before: String, $filter: WebhookConfigurationFilter) {
webhookConfigurations(tenant: $tenant, first: $first, after: $after, last: $last, before: $before, filter: $filter) {
pageInfo {
startCursor
endCursor
hasPreviousPage
}
totalCount
nodes {
id
tenant
createdOn
}
}
}
xxxxxxxxxx
{
"tenant": "YOUR_TENANT",
"first": 5,
"after": "YOUR_AFTER",
"last": 5,
"before": "YOUR_BEFORE",
"filter": {
"active": false,
"resourceType": "placeholder",
"resourceActions": ["ADDED"],
"searchText": "YOUR_SEARCH_TEXT"
}
}