13 lines
200 B
GraphQL
13 lines
200 B
GraphQL
![]() |
mutation CreateAppWebhook($input: WebhookCreateInput!) {
|
||
|
webhookCreate(input:$input){
|
||
|
webhook{
|
||
|
...WebhookDetailsFragment
|
||
|
}
|
||
|
errors{
|
||
|
code
|
||
|
field
|
||
|
message
|
||
|
}
|
||
|
}
|
||
|
}
|