fennec-fe/src/commits/subscriptions.ts

7 lines
170 B
TypeScript
Raw Normal View History

2021-06-05 19:17:45 +08:00
import { gql } from "@apollo/client";
export const SYNC_COMMITS = gql`
subscription SyncCommits($pipelineId: String!) {
syncCommits(pipelineId: $pipelineId)
}
`;