This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
How to access req object in resolver using express? #135
Labels
question
Further information is requested
I'm tying to make an graphQL endpoint in a already existing express project, Have a authentication middleware that evaluates the token and attach user object to req (req.user) I want to be able to get this user in the resolver. example:
if I import createHandler like this
const { createHandler } = require('graphql-http/lib/use/express')
req.user is undefined
but if I import createHanlder like this:
const { createHandler } = require('graphql-http')
I get req.user correctly but, the endpoints gives me timeout.
What is the proper way to do this?? Thanks so much in advance.
The text was updated successfully, but these errors were encountered: