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.
30 lines
471 B
30 lines
471 B
'use strict'
|
|
|
|
/* global wiki */
|
|
|
|
module.exports = {
|
|
Query: {
|
|
users(obj, args, context, info) {
|
|
return wiki.db.User.findAll({ where: args })
|
|
}
|
|
},
|
|
Mutation: {
|
|
createUser(obj, args) {
|
|
return wiki.db.User.create(args)
|
|
},
|
|
deleteUser(obj, args) {
|
|
return wiki.db.User.destroy({
|
|
where: {
|
|
id: args.id
|
|
},
|
|
limit: 1
|
|
})
|
|
}
|
|
},
|
|
User: {
|
|
groups(usr) {
|
|
return usr.getGroups()
|
|
}
|
|
}
|
|
}
|