尝试时:
const server = new ApolloServer({
schema: schema,
context: { req, driver, neo4jDatabase: process.env.NEO4J_DATABASE },
introspection: true,
playground: true,
})
错误:req 未定义
并在尝试时:
const server = new ApolloServer({
schema: schema,
context: ({ res }, driver, neo4jDatabase = process.env.NEO4J_DATABASE) => (
res, driver, neo4jDatabase
),
introspection: true,
playground: true,
})
错误:未提供 Neo4j JavaScript 驱动程序实例。
我已经尝试了很多不同的方法来编写它和阅读 Apollo 源代码,但都没有成功。