我正在使用 Apollo Server 在 GraphQL 和 REST 服务之间编写一个 GraphQL 接口。该接口将为 Apollo 客户端前端提供单个 GraphQL 端点。
目前的单一服务是 KeystoneJS 应用程序,它通过(据我所知)Apollo Server 提供 GraphQL 端点。为了暂时保持简单,我从 KeystoneJS 服务器 GraphQL Playground 下载 GraphQL 模式,并将其用作我界面的 GraphQL 模式(在删除 Keystone 生成且 Apollo Server 不理解的定义之后)。
我想自动化这个过程——也就是说,以某种方式“获取”KeystoneJS/Apollo Server 生成的 GraphQL 模式,就像我要从 GraphQL Playground 下载它一样。有没有办法从端点做到这一点?(我不想接触 KeystoneJS 内部,只需通过端点访问模式)