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