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 } } `;