Back to Graphql Engine

Postgres: Database to Remote Schema Relationships

docs/docs/schema/postgres/remote-relationships/remote-schema-relationships.mdx

2.49.45.1 KB
Original Source

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import Thumbnail from '@site/src/components/Thumbnail'; import GraphiQLIDE from '@site/src/components/GraphiQLIDE';

Postgres: Database to Remote Schema Relationships

Introduction

Database to Remote Schema relationships extend the concept of joining data across tables, to joining across tables and remote GraphQL sources. Once you create relationships between types from your database and types created from remote schemas, you can then "join" them by running GraphQL queries.

These APIs can be custom GraphQL servers you write, third party SaaS APIs, or even other Hasura instances.

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.

:::info Note

To see example use cases, check out this blog post.

:::

:::tip Supported from

Remote Schema relationships from Postgres are supported from versions v1.3.0 and above.

:::

Create Remote Schema relationships

Step 1: Add a Remote Schema and a database

Add a Remote Schema and a database as described here and here, if not already added.

Step 2: Define and create the relationship

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

  • Name: Define a name for the relationship.
  • Remote Schema: Select a Remote Schema among all the ones you've created.
  • Configuration: Set up the join configuration, to inject values as input arguments of the Remote Schema field.
    • From column: Input injected from table column values.
    • From static value: Input injected from a static value of your choice.

For example, let's assume that our database has a table order(id int, user_id int) and we've added a Remote Schema user-remote-schema.

  1. We name the relationship user.
  2. We select the user-remote-schema that we've added.
  3. We set up the config to join the id input argument of our Remote Schema field to the user_id column of this table (in this case, the order table).
<Tabs groupId="user-preference" className="api-tabs"> <TabItem value="console" label="Console">
  • Head to the Data -> [table-name] -> Relationships tab.

  • Click the Add Relationship button to open the widget.

  • Search for the remote schema by name in the To Reference input box.

  • Once selected, it will open the details section below to fill in the rest of the relationship definition.

  • Define the relationship details and hit Create Relationship.

    <Thumbnail src="/img/schema/add-remote-schema-rel.png" alt="Opening the remote relationship section" width="1000px" />

</TabItem> <TabItem value="cli" label="CLI">

Update the databases > [database-name] > tables > [table-name].yaml file in the metadata directory:

yaml
- table:
    schema: public
    name: order
  remote_relationships:
    - name: user
      definition:
        remote_field:
          user:
            arguments:
              id: $user_id
        hasura_fields:
          - user_id
        remote_schema: user-remote-schema

Apply the Metadata by running:

bash
hasura metadata apply
</TabItem> <TabItem value="api" label="API">

You can add a Remote Schema relationship by using the pg_create_remote_relationship Metadata API:

http
POST /v1/metadata HTTP/1.1
Content-Type: application/json
X-Hasura-Role: admin

{
  "type": "pg_create_remote_relationship",
  "args": {
    "name": "user",
    "source": "pg1",
    "table": { "name": "order", "schema": "public" },
    "hasura_fields": ["user_id"],
    "remote_schema": "user-remote-schema",
    "remote_field": {
      "user": {
        "arguments": {
          "id": "$user_id"
        }
      }
    }
  }
}
</TabItem> </Tabs>

Step 3: Explore with GraphiQL

In the API tab, test out your Remote Schema relationship.

<GraphiQLIDE query={query { order { id user_id user { id name } } }} response={{ "data": { "order": [ { "id": 1, "user_id": 2, "user": { "id": 2, "name": "Bob" } } ] } }} />

Remote Schema relationship permissions {#pg-remote-schema-relationship-permissions}

Remote Schema relationship permissions are derived from the Remote Schema permissions defined for the role. When a remote relationship permission cannot be derived, the remote relationship field will not be added to the schema for the role.

Some cases in which a remote relationship permission cannot be derived are:

  1. There are no Remote Schema permissions defined for the role.
  2. The role doesn't have access to the field or types that are used by the remote relationship.

:::info Note

Remote relationship permissions apply only if Remote Schema permissions are enabled in GraphQL Engine.

:::