Version latest
OS Ubuntu 18.04
Hasura GraphQL Engine lets you make powerful queries with built-in filtering, pagination, pattern search, bulk insert, update, delete mutations & subscriptions. You can also Trigger webhooks or serverless functions on Postgres insert/update/delete events. Comes with fine-grained dynamic access control that integrates with your auth system. This one-click setup also includes an empty Postgres database and automatic HTTPS from Let’s Encrypt using Caddy webserver.
profile
id
with type (Integer auto-increment)
name
with type (Text)
id
as the primary key and click the Create buttonIn addition to creating a Droplet from the Hasura GraphQL 1-Click App via the control panel, you can also use the DigitalOcean API.
As an example, to create a 4GB Hasura GraphQL Droplet in the SFO2 region, you can use the following curl command. You’ll need to either save your API access token to an environment variable or substitute it into the command below.
curl -X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer '$TOKEN'' -d \
'{"name":"choose_a_name","region":"sfo2","size":"s-2vcpu-4gb","image":"hasura-18-04"}' \
"https://api.digitalocean.com/v2/droplets"
Hasura Website for product reference
Documentation for Hasura GraphQL Engine
Open source repo