This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # We accomplish this by passing the req and res objects from the expressjs router to the context option | |
| # After getting the specific role or permission from the query instance we can accomplish route validation | |
| let graphQLSchema = { | |
| ...... | |
| resolve: async function(root, args, context){ | |
| context.role = 'ADMIN' | |
| } | |
| } |