我似乎找不到在GraphQL API之前设置Google Endpoint API网关的参考资料。
任何对参考资料的帮助或帮助都是很好的。
谢谢, 布莱恩
答案 0 :(得分:0)
我测试了此设置,并且可以正常工作。假设您有一个api.test.com/graphql
端点,则需要以常规方式在yaml配置文件中定义路径:
paths:
/graphql:
post:
description: "graphql http-post endpoint"
operationId: "graphql-post"
produces:
- "application/json"
responses:
200:
description: "Echo"
schema:
$ref: "#/definitions/echo_message"