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 } `;