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

10 lines
184 B
JavaScript

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