我正在构建一个联合图“网关”,并希望将网关的联合解析器导出到一个文件中以供以后使用
const server = new ApolloServer({
gateway,
context,
plugins: [ApolloServerPluginLandingPageGraphQLPlayground()],
});
有一种叫做executor
我们可以得到的东西:
const { schema, executor } = await gateway.load();
使用上面的代码,我可以提取网关的联合模式。如何将网关的联合解析器提取为TypeDefs
or DocumentNode
?executor
这里有什么作用吗?