mirror of https://github.com/requarks/wiki
13 lines
210 B
13 lines
210 B
8 years ago
|
|
||
7 years ago
|
/* global WIKI */
|
||
8 years ago
|
|
||
|
module.exports = {
|
||
|
Query: {
|
||
|
translations (obj, args, context, info) {
|
||
7 years ago
|
return WIKI.lang.getByNamespace(args.locale, args.namespace)
|
||
8 years ago
|
}
|
||
|
},
|
||
|
Mutation: {},
|
||
|
Translation: {}
|
||
|
}
|