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