11 lines
200 B
GraphQL
11 lines
200 B
GraphQL
![]() |
mutation ModifyAppWebhook($id: ID!, $input: WebhookUpdateInput!) {
|
||
|
webhookUpdate(id: $id, input: $input) {
|
||
|
errors {
|
||
|
message
|
||
|
}
|
||
|
webhook {
|
||
|
...WebhookDetailsFragment
|
||
|
}
|
||
|
}
|
||
|
}
|