AddWebhook is the resolver for the _add_webhook field.
(ctx context.Context, params model.AddWebhookRequest)
| 139 | |
| 140 | // AddWebhook is the resolver for the _add_webhook field. |
| 141 | func (r *mutationResolver) AddWebhook(ctx context.Context, params model.AddWebhookRequest) (*model.Response, error) { |
| 142 | return r.GraphQLProvider.AddWebhook(ctx, ¶ms) |
| 143 | } |
| 144 | |
| 145 | // UpdateWebhook is the resolver for the _update_webhook field. |
| 146 | func (r *mutationResolver) UpdateWebhook(ctx context.Context, params model.UpdateWebhookRequest) (*model.Response, error) { |
nothing calls this directly
no test coverage detected