0

我正在构建一个联合图“网关”,并希望将网关的联合解析器导出到一个文件中以供以后使用

const server = new ApolloServer({
    gateway,
    context,
    plugins: [ApolloServerPluginLandingPageGraphQLPlayground()],
 });

有一种叫做executor我们可以得到的东西:

const { schema, executor } = await gateway.load();

使用上面的代码,我可以提取网关的联合模式。如何将网关的联合解析器提取为TypeDefsor DocumentNodeexecutor这里有什么作用吗?

4

0 回答 0