Open Source GraphQL Engine Launched
Written by Kay Ewbank   
Wednesday, 11 July 2018

An open source GraphQL Engine has been launched that can be used with applications based on Postgres without the need for backend GraphQL processing code.

The new GraphQL as a service can be used by front-end developers to build scaleable GraphQL apps on Postgres.

Hasura’s GraphQL Engine automates the implementation and linking of databases to the graph. The APIs can be used to choose tables from new or existing database for use with GraphQL and link those existing tables into a graph. The engine has built-in authorization and authentication with granular authentication and a dynamic access control system that integrates with existing authentication systems such as Auth0 or custom implementations. The engine is also lightweight, consuming only 50MB of RAM even while serving more than a thousand requests per second.

 

hgqle-instantgraphql

 

 

The Hasura platform’s data microservice provides a HTTP API to query Postgres using GraphQL or JSON that lets you make use of foreign key constraints in Postgres to query hierarchical data in a single request, and the queries can traverse tables to an arbitrary depth. The query interface combined with permissions lets front end applications query Postgres without writing any back end code.

A query made to the data microservice first goes through authorization checks at the gateway. User ID and role headers are added, and the query is then passed via proxy to the data service. This receives the request, parses the headers to get the user ID and role, and parses the body into a GraphQL AST.  The query is then validated for semantic correctness, and the permissions are enforced. It is then converted to a SQL statement and is executed on Postgres. Finally, the result from Postgres is processed and sent to the client.

 

 

The developers of Hasura say their GraphQL servers are like self-documenting APIs that enable full API discoverability for the developers.

Tanmai Gopal, Co-founder and CEO of Hasura noted:

“We’re thrilled to open source Hasura’s GraphQL Engine to further ease the adoption of GraphQL. The GraphQL community can harness our lightweight GraphQL-as-a-Service engine and turbocharge any of their new or existing Postgres applications."

While this release focuses on Postgres, the plan is to add support for other databases in the future. 

 

has1

 

More Information

Hasura GraphQL

Related Articles

Graphcool Eases Your Way Into GraphQL

GraphQL Leaves Tech Preview

PostgreSQL Improves Declarative Partitioning

PostgreSQL Adds Parallel Query Support

PostgreSQL Version 9.5

PostgreSQL 9.4 Released

PostgreSQL Plus Cloud Database

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Can C++ Be As Safe As Rust?
10/04/2024

Herb Sutter is a well known and respected C++ champion and he thinks that the language only needs a few tweaks to make it as safe as Rust. Can this be true?



Excel Spreadsheet - A Joke?
01/04/2024

No this isn't an April Fool's although in places it seems like one. It's a true account of how Williams Racing has suffered through reliance on an overgrown and outdated Microsoft Excel spreadsheet, l [ ... ]


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

Last Updated ( Wednesday, 11 July 2018 )