我有一个由JWT授权的graphql端点。我的JWT策略验证JWT然后将用户对象添加到请求对象。
在一条宁静的路线中,我会像这样访问我的用户数据:
router.get('/', (req, res, next) => {
console.log('user', req.user)
}
我想访问graphql解析器中的req.user对象,以便提取用户的ID。但是,当我尝试记录context
变量时,它始终为空。
我是否需要配置我的graphql端点以将req
数据传递给解析器?
我的app.js我的graphql设置如下:
import { graphqlExpress, graphiqlExpress } from 'apollo-server-express';
app.use('/graphql', [passport.authenticate('jwt', { session: false }), bodyParser.json()], graphqlExpress({ schema }));
然后我有我的解析器:
const resolvers = {
Query: {
user: async (obj, {email}, context) => {
console.log('obj', obj) // undefined
console.log('email', email) // currently passed through in graphql query but I want to replace this with the user data passed in req / context
console.log('context', context) // {}
return await UserService.findOne(email)
},
};
// Put together a schema
const schema = makeExecutableSchema({
typeDefs,
resolvers,
});
如何在解析器中访问我的JWT用户数据?
答案 0 :(得分:1)
显然你需要手动传递上下文:
app.use('/graphql', [auth_middleware, bodyParser.json()], (req, res) => graphqlExpress({ schema, context: req.user })(req, res) );
如果有人感兴趣,请找到答案here: