25 lines
513 B
JavaScript
25 lines
513 B
JavaScript
|
|
||
|
/* global wiki */
|
||
|
|
||
|
const _ = require('lodash')
|
||
|
|
||
|
module.exports = {
|
||
|
Query: {
|
||
|
settings(obj, args, context, info) {
|
||
|
return wiki.db.Setting.findAll({ where: args, raw: true }).then(entries => {
|
||
|
return _.map(entries, entry => {
|
||
|
entry.config = JSON.stringify(entry.config)
|
||
|
return entry
|
||
|
})
|
||
|
})
|
||
|
}
|
||
|
},
|
||
|
Mutation: {
|
||
|
setConfigEntry(obj, args) {
|
||
|
return wiki.db.Setting.update({
|
||
|
value: args.value
|
||
|
}, { where: { key: args.key } })
|
||
|
}
|
||
|
}
|
||
|
}
|