feat: add /editor/create to create a flow

This commit is contained in:
Ali BARIN
2021-12-18 00:42:28 +01:00
committed by Ömer Faruk Aydın
parent 19a8323058
commit d06ce4958e
8 changed files with 80 additions and 16 deletions

View File

@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const CREATE_FLOW = gql`
mutation createFlow {
createFlow {
id
name
}
}
`;