mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
405 B
23 lines
405 B
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
|
|
}
|
|
}
|
|
`
|
|
}
|