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

7 lines
140 B
JavaScript

import { gql } from '@apollo/client';
export const GET_CONFIG = gql`
query GetConfig($keys: [String]) {
getConfig(keys: $keys)
}
`;