sofa 的webhook实际上就是将graphql 的subscription 进行了扩展,当接受到sub 请求的时候 再做一次http 的转发处理,方便rest api 的访问 环境准备 环境还是使用的docker-compose ,以前的代码,只是添加了一个webhook 的容器镜像 可以参考 ...
大部分代码还是来自sofa 的官方文档,同时添加了docker && docker-compose集成 备注: 代码使用typescript 同时运行的时候为了方便直接运行使用ts-node 运行 环境准备 docker-compose 文件 version: "3" services: api: ...
GraphQL 前端开发的利剑与桥梁 基本概念 GraphQL GraphQL 是一种用于 API 的查询语言,由Facebook开发和开源,是使用基于类型系统来执行查询的服务端运行时(类型系统由你的数据定义)。GraphQL并没有和任何特定数据库或者存储引擎绑定,而是依靠你现有的代码和数据支撑。 ...
分类:
其他好文 时间:
2019-01-26 20:01:23
阅读次数:
190
A few years ago, I managed a team at DocuSign that was tasked with re-writing the main DocuSign web app which was used by tens of millions of users. T ...
转自: https://tomasalabes.me/blog/nodejs/graphql/2018/07/11/modularizing-graphql.html Modularizing your graphQL schemas Working in a kinda big graphql s ...
分类:
其他好文 时间:
2019-01-19 21:12:18
阅读次数:
168
转自: https://tomasalabes.me/blog/graphql/node/microservices/2018/08/11/graphql-architectures.html GraphQL Gateway Architectures These are the approache ...
分类:
其他好文 时间:
2019-01-19 21:09:18
阅读次数:
189
madlib 可以让我们直接在sql 中进行机器学习,集成了强大的sql 能力,以及分析能力,后边会尝试 集成graphql engine ,让功能更强大 docker 镜像准备 使用了一个别人的写好的,也可以参考官方提供的,就是镜像包有点大 docker-compose 文件 version: ' ...
分类:
其他好文 时间:
2019-01-18 23:56:16
阅读次数:
215
With GraphQL, every field and nested object can have a set of arguments which can be used to request very specific data from a GraphQL API. In this le ...
分类:
其他好文 时间:
2019-01-13 02:01:58
阅读次数:
288
A GraphQL fragment encapsulates a collection of fields that can be included in queries. In this video, we'll look at how to create fragments on types ...
分类:
其他好文 时间:
2019-01-13 00:15:09
阅读次数:
145
To query a GraphQL API, all you need to do is send an HTTP request that includes the query operation in the body of the request. In this lesson, we wi ...