Web / Mobile / VR / AR / IoT / AI
Software architect, consultant, author
A query language for your API
open source and free engine that gives you auto-generates real-time GraphQL API on top of new or existing PostgreSQL database
Download docker-compose.yaml
wget https://raw.githubusercontent.com/hasura/graphql-engine/stable/install-manifests/docker-compose/docker-compose.yaml
docker-compose up
stitch your custom GraphQL server schema
yb-ctl create --rf 3
Connect to ysqlsh
./bin/ysqlsh --echo-queries
docker run -d -p 8080:8080 -e \
HASURA_GRAPHQL_DATABASE_URL=postgres://postgres:@host.docker.internal:5433/yb_demo \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true hasura/graphql-engine:latest
Let's see it in action
@VladimirNovick