19 lines
293 B
TypeScript
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
|
|
}
|
|
}
|
|
}
|
|
`;
|