saleor-dashboard/src/fragments/webhooks.ts

21 lines
337 B
TypeScript
Raw Normal View History

import gql from "graphql-tag";
export const webhooksFragment = gql`
fragment WebhookFragment on Webhook {
id
name
isActive
serviceAccount {
id
name
}
}
`;
export const webhooksDetailsFragment = gql`
${webhooksFragment}
fragment WebhooksDetailsFragment on Webhook {
...WebhookFragment
}
`;