react-starter-kit:如何为 Relay Modern 导出 graphql 模式?
react-starter-kit: How can I export graphql schema for Relay Modern?
我想将 Relay Modern 添加到我从 react-starter-kit 开始的应用程序中。 relay-compiler
需要模式定义文件 (schema.graphql
),我该如何生成它?
您可以使用 get-graphql-schema:
npm install -g get-graphql-schema
get-graphql-schema ENDPOINT_URL > schema.graphql
这是基于 GraphQL 自省查询,here's more information。
我想将 Relay Modern 添加到我从 react-starter-kit 开始的应用程序中。 relay-compiler
需要模式定义文件 (schema.graphql
),我该如何生成它?
您可以使用 get-graphql-schema:
npm install -g get-graphql-schema
get-graphql-schema ENDPOINT_URL > schema.graphql
这是基于 GraphQL 自省查询,here's more information。