feat: add dropdown field with dynamic data in flow
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
5e1fc510ff
commit
932145e3a1
@@ -78,6 +78,14 @@ export const GET_APPS = gql`
|
||||
required
|
||||
description
|
||||
variables
|
||||
source {
|
||||
type
|
||||
name
|
||||
arguments {
|
||||
name
|
||||
value
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
7
packages/web/src/graphql/queries/get-data.ts
Normal file
7
packages/web/src/graphql/queries/get-data.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
import { gql } from '@apollo/client';
|
||||
|
||||
export const GET_DATA = gql`
|
||||
query GetData($stepId: String!, $key: String!) {
|
||||
getData(stepId: $stepId, key: $key)
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user