Webhook is the resolver for the _webhook field.
(ctx context.Context, params model.WebhookRequest)
| 249 | |
| 250 | // Webhook is the resolver for the _webhook field. |
| 251 | func (r *queryResolver) Webhook(ctx context.Context, params model.WebhookRequest) (*model.Webhook, error) { |
| 252 | return r.GraphQLProvider.Webhook(ctx, ¶ms) |
| 253 | } |
| 254 | |
| 255 | // Webhooks is the resolver for the _webhooks field. |
| 256 | func (r *queryResolver) Webhooks(ctx context.Context, params *model.PaginatedRequest) (*model.Webhooks, error) { |