Files
automatisch/packages/web/src/graphql/mutations/execute-flow.ts
2022-02-14 19:25:54 +03:00

14 lines
221 B
TypeScript

import { gql } from '@apollo/client';
export const EXECUTE_FLOW = gql`
mutation ExecuteFlow($stepId: String!) {
executeFlow(stepId: $stepId) {
step {
id
status
}
data
}
}
`;