feat: create flow with trigger app

This commit is contained in:
Ali BARIN
2022-01-30 01:24:42 +01:00
committed by Ömer Faruk Aydın
parent 131d33916a
commit 700d0bfd32
7 changed files with 43 additions and 15 deletions

View File

@@ -1,8 +1,8 @@
import { gql } from '@apollo/client';
export const CREATE_FLOW = gql`
mutation createFlow {
createFlow {
mutation createFlow($input: FlowInput) {
createFlow(input: $input) {
id
name
}