Files
automatisch/packages/web/src/graphql/mutations/create-flow.ts
2022-03-09 00:53:20 +03:00

11 lines
185 B
TypeScript

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