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