hasura graphql 模式拼接demo

实际上通过上边的介绍,模式拼接和hasura 基本没啥关系了,就是使用graphql-bindings 进行schema 合并了

基本demo

这个是官方提供的demo

git clone  https://github.com/hasura/graphql-schema-stitching-demo

运行

  • 依赖安装
yarn 
  • 运行
HASURA_GRAPHQL_ENGINE_URL=http://localhost:9090    

yarn start

效果

使用到的技术

  • mergeSchemas
  • makeRemoteExecutableSchema

参考资料

https://github.com/hasura/graphql-schema-stitching-demo
https://oss.prisma.io/content/graphql-binding/01-overview
https://www.apollographql.com/docs/graphql-tools/remote-schemas.html
https://www.prisma.io/blog/reusing-and-composing-graphql-apis-with-graphql-bindings-80a4aa37cff5/
https://github.com/hasura/generate-graphql-bindings

原文地址:https://www.cnblogs.com/rongfengliang/p/9367799.html