Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to access req object in resolver using express? #135

Closed
yosletpp opened this issue Jan 16, 2025 · 0 comments
Closed

How to access req object in resolver using express? #135

yosletpp opened this issue Jan 16, 2025 · 0 comments
Labels
question Further information is requested

Comments

@yosletpp
Copy link

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:

....
import { createHandler } from 'graphql-http/lib/use/express';
....

const schema2 = buildSchema(`
  type Query {
    hello: String
  }
`);

const root2 = {
  hello: (args, context, info) => {
    console.log(context.user);
    // some logic with the user here
    return 'Hello, world!'
  },
};

router.post(
  '/business2',
  createHandler({
    schema: schema2,
    rootValue: root2,
    context: (req) => ({
      user: req.user
    })
    // Pass req.user into the context,
  })
);

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.

@graphql graphql locked and limited conversation to collaborators Jan 17, 2025
@enisdenjo enisdenjo converted this issue into discussion #136 Jan 17, 2025
@enisdenjo enisdenjo added the question Further information is requested label Jan 17, 2025

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants