fix: make list webhooks params optional

This commit is contained in:
Lakhan Samani
2022-07-11 22:05:44 +05:30
parent 4f5a6c77f8
commit bfaa0f9d89
5 changed files with 36 additions and 29 deletions

View File

@@ -355,7 +355,7 @@ type TestEndpointResponse {
}
input ListWebhookLogRequest {
pagination: PaginationInput!
pagination: PaginationInput
webhook_id: String
}
@@ -429,5 +429,5 @@ type Query {
_env: Env!
_webhook(params: WebhookRequest!): Webhook!
_webhooks(params: PaginatedInput): Webhooks!
_webhook_logs(params: ListWebhookLogRequest!): WebhookLogs!
_webhook_logs(params: ListWebhookLogRequest): WebhookLogs!
}