* WIP * Add menu for rename/color select * Add stories * Remove useless code * Fix color name, add icon for selected color * Remove useless comment * Unify color vocabulary * Fix rebase * Rename story * Improve hotkeys and imports
20 lines
458 B
TypeScript
20 lines
458 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const DELETE_PIPELINE_PROGRESS = gql`
|
|
mutation DeleteManyPipelineProgress($ids: [String!]) {
|
|
deleteManyPipelineProgress(where: { id: { in: $ids } }) {
|
|
count
|
|
}
|
|
}
|
|
`;
|
|
|
|
export const UPDATE_PIPELINE_STAGE = gql`
|
|
mutation UpdatePipelineStage($id: String, $data: PipelineStageUpdateInput!) {
|
|
updateOnePipelineStage(where: { id: $id }, data: $data) {
|
|
id
|
|
name
|
|
color
|
|
}
|
|
}
|
|
`;
|