13 lines
229 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|