无法读取未定义的属性“授权”

时间:2020-12-19 13:27:31

标签: graphql nestjs nestjs-config graphql-config

请不要将此问题标记为“重复”。我在其他地方找到了类似的问题,但找不到任何合适的解决方案。

当我在 Nestjs 应用配置中的 context 中使用 GraphQLModule 时,我从未找到 req。当我安慰这个 req 时,它是未定义的。在这个问题上花费了很多时间,但在一个脉络上。

/src/app.module.ts

@Module({
  imports: [
    ProductModule,
    GraphQLModule.forRoot({
      debug: true,
      typePaths: ["./**/*.gql"],
      definitions: {
        path: join(process.cwd(), "src/schemas/graphql.d.ts"),
      },
      installSubscriptionHandlers: true,
      context: ({ req }) => { 
        console.log(req);  <======================== undefined !!!!
        return {req}
      },
    }),
    MongooseModule.forRoot(MONGO_URI),
    AuthModule,
    UsersModule,
  ],
  controllers: [AppController],
  providers: [AppService],
})

0 个答案:

没有答案