Files
twenty/packages/twenty-front/src/modules/settings/developers/graphql/queries/getWebhook.ts
T
Charles Bochet bc7791871f Introduce webhook v2 (#17456)
Migrate webhook to v2 entity
2026-01-27 15:32:33 +00:00

12 lines
272 B
TypeScript

import gql from 'graphql-tag';
import { WEBHOOK_FRAGMENT } from '@/settings/developers/graphql/fragments/webhookFragment';
export const GET_WEBHOOK = gql`
query GetWebhook($id: UUID!) {
webhook(id: $id) {
...WebhookFragment
}
}
${WEBHOOK_FRAGMENT}
`;