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