postgraphile支持订阅
postgraphile是基于 Postgres 的支持实时订阅和实时查询的 GraphoQL Nodejs 工具。
其订阅特性开始于刚刚发布的 4.4.0 版本。基于 Postgres 的LISTEN/NOTIFY特性。
注意Live Query不是订阅,两个不一样,建议使用订阅.
自带 GraphQL 开发 UI。
使用示例:
import { createServer } from 'http';
import postgraphile from 'postgraphile';
createServer(postgraphile());