Files
automatisch/packages/web/src/graphql/mutations/update-step.ts
2022-01-29 11:36:29 +03:00

17 lines
258 B
TypeScript

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