17 lines
304 B
TypeScript
17 lines
304 B
TypeScript
import { gql } from "@apollo/client";
|
|
|
|
export const PIPELINE_TASK_EVENT = gql`
|
|
subscription PipelineTaskEvent($taskId: String!) {
|
|
pipelineTaskEvent(taskId: $taskId) {
|
|
taskId
|
|
pipelineId
|
|
projectId
|
|
unit
|
|
emittedAt
|
|
message
|
|
messageType
|
|
status
|
|
}
|
|
}
|
|
`;
|