feat: make step in editor configurable

This commit is contained in:
Ali BARIN
2022-01-28 15:53:37 +03:00
committed by Ömer Faruk Aydın
parent 4985fb422e
commit 95a63affe7
21 changed files with 1966 additions and 5016 deletions
@@ -0,0 +1,15 @@
import { gql } from '@apollo/client';
export const CREATE_STEP = gql`
mutation CreateStep($input: StepInput!) {
createStep(input: $input) {
id
type
key
appKey
connection {
id
}
}
}
`;
@@ -0,0 +1,15 @@
import { gql } from '@apollo/client';
export const UPDATE_STEP = gql`
mutation UpdateStep($input: StepInput!) {
updateStep(input: $input) {
id
type
key
appKey
connection {
id
}
}
}
`;