使用graphql-code-generator 生成graphql 代码

Posted rongfengliang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用graphql-code-generator 生成graphql 代码相关的知识,希望对你有一定的参考价值。

类似的工具比较多,比如prisma 、qloo、golang 的gqlgen、apollo-codegen
graphql-code-generator 也是一个不错的工具(灵活、模版自定义。。。)

安装

 npm install --save-dev graphql-code-generator graphql
 Or
 yarn add -D graphql-code-generator graphql

参考demo

  • 项目初始化
yarn init -y 
  • 添加依赖
 yarn add --dev graphql-code-generator graphql
package.json:

{
"name": "first",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"graphql": "^0.13.2",
"graphql-code-generator": "^0.10.7",
"graphql-codegen-typescript-template": "^0.10.7",
"typescript": "^3.0.1"
},
"scripts": {
"gen": "gql-gen --schema http://localhost:3009/graphql --template graphql-codegen-typescript-template --out ./typings/ "./src/**/*.graphql"",
"code":"tsc "
}
}
  • clone 测试graphql server
git clone https://github.com/rongfengliang/harborapi2graphql.git
  • 启动测试graphql server
yarn && yarn start

运行生成graphql 代码

  • 生成代码
yarn  gen

参考效果

技术分享图片

参考资料

https://github.com/rongfengliang/graphql-code-generate-demo
https://github.com/dotansimha/graphql-code-generator

以上是关于使用graphql-code-generator 生成graphql 代码的主要内容,如果未能解决你的问题,请参考以下文章

使用 Hasura graphql 模式时如何自定义 graphql-code-generator 生成的字段的类型

graphql-code-generator 依据graphql schema自动生成客户端类型定义

使用graphql代码生成器时如何将自定义标量类型映射到打字稿类型?

测试使用

第一篇 用于测试使用

在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?