Hasura gives you CRUD + realtime GraphQL APIs with authorization & access control. However, in many cases, you will need to write APIs (queries, mutations) that contain custom logic. For example, implementing a payment API, or querying data that is not in your database.
Hasura has the ability to merge remote GraphQL schemas and provide a unified GraphQL API. Think of it like automated schema merging. All you need to do is build your own GraphQL service and then provide the HTTP endpoint to Hasura. Your GraphQL service can be written in any language or framework.
Remote schemas are ideal for use cases such as:
To support custom business logic, you’ll need to create a custom GraphQL server (see boilerplates) and merge its schema with GraphQL Engine’s.
Merge remote GraphQL schemas (YouTube link)
The fastest way to try remote schema out is via Heroku.
Click on the following button to deploy GraphQL Engine on Heroku with the free Postgres add-on:
Open the Hasura console
Visit https://<app-name>.herokuapp.com
(replace <app-name> with your app name) to open the admin console.
Merge your first remote schema and query it
In the admin console, open the Remote Schemas
tab and click on the Add
button. Fill in the following details:
countries
(an alias for this remote schema).https://countries.trevorblades.com/
(a public GraphQL API that we’ll use to quickly check out this feature; maintained by @trevorblades.Add Remote Schema
button.Head to the ``GraphiQL` tab and run the following query (paste it in the query window on the left and click the ▶️ (play) button):
{
countries {
emoji
name
languages {
name
native
}
}
}
You can explore the GraphQL types from the remote schema using the Docs
explorer in the top right corner of the GraphiQL
interface.
Boilerplates for custom GraphQL servers in popular languages/frameworks are available.
Please note that boilerplates for more languages, frameworks, serverless platforms, etc. are being iterated upon and community contributions are very welcome.
Current limitations:
These limitations will be addressed in upcoming versions.
Read the complete documentation.
This document is available in the following translations: