feat: make substeps updatable

This commit is contained in:
Ali BARIN
2022-01-31 22:12:08 +01:00
committed by Ömer Faruk Aydın
parent 6c0ba197c6
commit 91a1c8b793
9 changed files with 64 additions and 26 deletions

View File

@@ -241,7 +241,8 @@
"name": "Set up a trigger",
"arguments": [
{
"name": "username",
"label": "Username",
"key": "username",
"type": "string",
"required": true
}
@@ -266,7 +267,8 @@
"name": "Set up action",
"arguments": [
{
"name": "tweet",
"label": "Tweet body",
"key": "tweet",
"type": "string",
"required": true
}

View File

@@ -17,7 +17,8 @@ const actionType = new GraphQLObjectType({
new GraphQLObjectType({
name: 'ActionSubStepArgument',
fields: {
name: { type: GraphQLString },
label: { type: GraphQLString },
key: { type: GraphQLString },
type: { type: GraphQLString },
required: { type: GraphQLBoolean }
}

View File

@@ -17,7 +17,8 @@ const triggerType = new GraphQLObjectType({
new GraphQLObjectType({
name: 'TriggerSubStepArgument',
fields: {
name: { type: GraphQLString },
label: { type: GraphQLString },
key: { type: GraphQLString },
type: { type: GraphQLString },
required: { type: GraphQLBoolean }
}