fennec-fe/src/commits/subscriptions.ts
2021-06-05 20:11:00 +08:00

7 lines
170 B
TypeScript

import { gql } from "@apollo/client";
export const SYNC_COMMITS = gql`
subscription SyncCommits($pipelineId: String!) {
syncCommits(pipelineId: $pipelineId)
}
`;