feat: add /editor/create to create a flow

This commit is contained in:
Ali BARIN
2021-12-21 09:32:17 +01:00
committed by Ömer Faruk Aydın
parent 19a8323058
commit d06ce4958e
8 changed files with 80 additions and 16 deletions
@@ -0,0 +1,10 @@
import { gql } from '@apollo/client';
export const CREATE_FLOW = gql`
mutation createFlow {
createFlow {
id
name
}
}
`;