Files
automatisch/packages/web/src/graphql/mutations/update-step.js
2024-02-29 09:38:32 +00:00

18 lines
292 B
JavaScript

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