Files
automatisch/packages/web/src/graphql/queries/get-data.ts
2022-05-03 21:12:29 +02:00

8 lines
216 B
TypeScript

import { gql } from '@apollo/client';
export const GET_DATA = gql`
query GetData($stepId: String!, $key: String!, $parameters: JSONObject) {
getData(stepId: $stepId, key: $key, parameters: $parameters)
}
`;