Files
automatisch/packages/web/src/graphql/queries/get-dynamic-data.js
2024-02-29 09:38:32 +00:00

11 lines
251 B
JavaScript

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)
}
`;