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