标签:http number mes pass info scroll 情况 src OLE
好久没有在关注hasura graphql-engine 了,从最新的release 信息可以看到graphql-engine 已经beta
阶段了,而且目前是v1.0.0-beta.2
估计离生产可用已经不远了(实际上已经是可以使用的)
以下是一些大的变动,关于查询以及bug 上的修复具体可以参考官方文档
/v1alpha1/graphql
现在是v1/graphql
而且对于v1 版本地址算是固定了version: ‘3.6‘
services:
postgres:
image: postgres
environment:
- "POSTGRES_PASSWORD:dalong"
volumes:
- ./db_data:/var/lib/postgresql/data
graphql-engine:
image: hasura/graphql-engine:v1.0.0-beta.2
ports:
- "8080:8080"
depends_on:
- "postgres"
environment:
- "HASURA_GRAPHQL_DATABASE_URL=postgres://postgres:dalong@postgres:5432/postgres"
- "HASURA_GRAPHQL_ENABLE_CONSOLE=true"
HASURA_GRAPHQL_ENABLE_ALLOWLIST=true
或者运行的时候添加 --enable-allowlist
hasura graphql-engine 是越来越强大了
https://docs.hasura.io/1.0/graphql/manual/deployment/allow-list.html
hasura graphql-engine 最近版本的一些更新
标签:http number mes pass info scroll 情况 src OLE
原文地址:https://www.cnblogs.com/rongfengliang/p/10958847.html