refactor(web): remove typescript
This commit is contained in:
10
packages/web/src/graphql/queries/get-dynamic-data.js
Normal file
10
packages/web/src/graphql/queries/get-dynamic-data.js
Normal file
@@ -0,0 +1,10 @@
|
||||
import { gql } from '@apollo/client';
|
||||
export const GET_DYNAMIC_DATA = gql`
|
||||
query GetDynamicData(
|
||||
$stepId: String!
|
||||
$key: String!
|
||||
$parameters: JSONObject
|
||||
) {
|
||||
getDynamicData(stepId: $stepId, key: $key, parameters: $parameters)
|
||||
}
|
||||
`;
|
Reference in New Issue
Block a user