Files
automatisch/packages/web/src/graphql/mutations/update-step.ts
2022-05-07 11:17:45 +02:00

18 lines
276 B
TypeScript

import { gql } from '@apollo/client';
export const UPDATE_STEP = gql`
mutation UpdateStep($input: UpdateStepInput) {
updateStep(input: $input) {
id
type
key
appKey
parameters
status
connection {
id
}
}
}
`;