Files
automatisch/packages/web/src/graphql/mutations/create-flow.ts
2022-01-30 11:15:30 +03:00

11 lines
179 B
TypeScript

import { gql } from '@apollo/client';
export const CREATE_FLOW = gql`
mutation createFlow($input: FlowInput) {
createFlow(input: $input) {
id
name
}
}
`;