Files
automatisch/packages/web/src/graphql/mutations/update-step.ts
2023-01-14 19:15:55 +01:00

19 lines
293 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
webhookUrl
connection {
id
}
}
}
`;