12345678910111213141516171819202122 |
- import gql from 'graphql-tag'
- export default {
- GQL_QUERY_AUTHENTICATION: gql`
- query($mode: String!) {
- authentication(mode:$mode) {
- key
- useForm
- title
- icon
- }
- }
- `,
- GQL_QUERY_TRANSLATIONS: gql`
- query($locale: String!, $namespace: String!) {
- translations(locale:$locale, namespace:$namespace) {
- key
- value
- }
- }
- `
- }
|