Files
Stripe/src/migrations/1-add-issuing-pricinpal/UpdateWebhook.graphql
jackbeeby dc5eea1ad0 wdc
2024-12-05 18:20:27 +11:00

13 lines
229 B
GraphQL

mutation Migration_01_UpdateWebhook($webhookId: ID!, $newQuery: String!) {
webhookUpdate(id: $webhookId, input: { query: $newQuery }) {
webhook {
id
}
errors {
code
field
message
}
}
}