From 274d0eb2fd2a9ab83870f2d04387048fc6351f6c Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Sun, 23 Oct 2022 20:03:54 +0200 Subject: [PATCH] chore: Use argument option also for action substep argument --- packages/backend/src/graphql/schema.graphql | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/backend/src/graphql/schema.graphql b/packages/backend/src/graphql/schema.graphql index cd5486c2..baf388c7 100644 --- a/packages/backend/src/graphql/schema.graphql +++ b/packages/backend/src/graphql/schema.graphql @@ -77,7 +77,7 @@ type ActionSubstepArgument { description: String required: Boolean variables: Boolean - options: [ActionSubstepArgumentOption] + options: [ArgumentOption] source: ActionSubstepArgumentSource dependsOn: [String] } @@ -88,11 +88,6 @@ type ActionSubstepArgumentSource { arguments: [ActionSubstepArgumentSourceArgument] } -type ActionSubstepArgumentOption { - label: String - value: JSONObject -} - type ActionSubstepArgumentSourceArgument { name: String value: String