fix: TT-69

This commit is contained in:
anik-ghosh-au7
2022-07-15 22:12:08 +05:30
parent eabc943452
commit 8fc52d76dc
4 changed files with 495 additions and 147 deletions

View File

@@ -101,3 +101,23 @@ export const EmailVerificationQuery = `
}
}
`;
export const WebhooksDataQuery = `
query getWebhooksData {
_webhooks{
webhooks{
id
event_name
endpoint
enabled
headers
}
pagination{
limit
page
offset
total
}
}
}
`;