21 lines
337 B
TypeScript
21 lines
337 B
TypeScript
![]() |
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
|
||
|
}
|
||
|
`;
|