mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-17 02:11:28 +00:00
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
export default {
|
|
Query: {
|
|
availableRoles: async (_parent, args, context, _resolveInfo) => {
|
|
return ['admin', 'moderator', 'user']
|
|
},
|
|
},
|
|
}
|