Skip to main content
Version: v2.x

Postgres: Database to Remote Database Relationships

Introduction

Remote database relationships (a.k.a remote source relationships) extend the concept of joining data between tables within a single database to joining data across tables between separate databases.

After you've established relationships between types in your source database and types in your target database, you can "join" them with GraphQL queries.

Because Hasura is meant to be a GraphQL server that you can expose directly to your apps, Hasura also handles security and authorization while providing remote joins.

Supported from

Remote database relationships for Postgres are supported from versions v2.1.0 and above.

Create remote database relationships

Step 1: Add two database sources

Add a source database as described here and track the required tables. Then, repeat the process to add your target database.

Step 2: Define and create the relationship

A remote database relationship is defined alongside the source database table (that is, the source side of the join).

The following fields can be defined for a Remote Schema relationship:

  • Relationship type: Either object or array - similar to normal relationships. Hasura supports both many-to-one (object) and one-to-many (array) relationships.
  • Relationship Name: A name for the relationship.
  • Reference Source: The name of the target database (that is, the target side of the join).
  • Reference Table: The table in the target database source that should be joined with the source table
  • Field Mapping: A mapping between fields in the source table and their corresponding fields in the target table, just as a foreign key relationship would be defined by such mapping within a single database.

For example, say we have a table orders(id int, user_id int) in the source database and a table user(id int, name text) in the target database.

We can create an object remote database relationship user joining the orders table to the user table using the orders.user_id and user.id fields.

  1. Head to the Data > [database] > [orders] > Relationships tab. Click on Add Relationships to open the widget.

  2. Search for the remote database table in the "To Reference" input box

Create remote database relationships
  1. Fill in the relationships details - type of the relationship & column mapping.
Create remote database relationships
  1. Hit Create Relationship to track the remote relationship.

Step 3: Explore with GraphiQL

Run the following query in the GraphiQL editor to test your remote database relationship across the two connected databases:

GraphiQL
Query Variables
Request Headers
Documentation Explorer
No Schema Available