
* Move plaintext renderer to shared package and use it for Algolia documents * Fix stale variants after product removal, add indices setup * Search: webhooks migration script (#936) * Add webhook recreation script * Add changeset
28 lines
413 B
GraphQL
28 lines
413 B
GraphQL
fragment OwnWebhook on Webhook {
|
|
id
|
|
isActive
|
|
name
|
|
targetUrl
|
|
asyncEvents {
|
|
name
|
|
eventType
|
|
}
|
|
eventDeliveries(first: 100) {
|
|
edges {
|
|
node {
|
|
id
|
|
status
|
|
attempts(first: 100) {
|
|
edges {
|
|
node {
|
|
status
|
|
id
|
|
createdAt
|
|
responseStatusCode
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|