MS SQL Server: Tables basics

Introduction

Adding tables allows you to define the GraphQL types of your schema including their corresponding fields.

Creating tables

Let’s say we want to create two simple tables for articles and authors schema:

authors (
  id int PRIMARY KEY,
  name text
)

articles (
  id int PRIMARY KEY,
  title text,
  content text,
  rating int,
  author_id int
)

Open the Hasura console and head to the Data tab and click on the button on the left side bar to open up an interface to create tables.

For example, here is the schema for the articles table in this interface:

Schema for an article table
  1. Create a migration manually and add the following SQL statement to the up.sql file:

    CREATE TABLE articles(id int NOT NULL, title text NOT NULL, content text NOT NULL, rating int NOT NULL, author_id int NOT NULL, PRIMARY KEY (id));
    
  2. Add the following statement to the down.sql file in case you need to roll back the above statement:

    DROP TABLE articles;
    
  3. Apply the migration by running:

    hasura migrate apply
    

You can create a table by making an API call to the schema_run_sql metadata API:

POST /v2/query HTTP/1.1
Content-Type: application/json
X-Hasura-Role: admin

{
  "type": "run_sql",
  "args": {
    "source": "<db-name>",
    "sql": "CREATE TABLE articles(id int NOT NULL, title text NOT NULL, content text NOT NULL, rating int NOT NULL, author_id int NOT NULL, PRIMARY KEY (id));"
  }
}

Tracking tables

Tables can be present in the underlying MS SQL Server database without being exposed over the GraphQL API. In order to expose a table over the GraphQL API, it needs to be tracked.

When a table is created via the Hasura console, it gets tracked by default.

You can track any existing tables in your database from the Data -> Schema page:

Track table
  1. To track the table and expose it over the GraphQL API, edit the tables.yaml file in the metadata directory as follows:

     - table:
         schema: public
         name: authors
     - table:
         schema: public
         name: articles
    
  2. Apply the metadata by running:

    hasura metadata apply
    

To track the table and expose it over the GraphQL API, make the following API call to the mssql_track_table metadata API:

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

{
  "type": "mssql_track_table",
  "args": {
    "table": "authors",
  }
}

Generated GraphQL schema types

As soon as a table is created and tracked, the corresponding GraphQL schema types and query fields will be automatically generated.

The following object type is generated for the articles table we just created and tracked:

# Object type
type Articles {
  id: Int
  title: String
  content: String
  rating: Int
  author_id: Int
}

Let’s analyze the above type:

  • Articles is the name of the type
  • id, title, content, rating and author_id are fields of the Articles type
  • Int and String are types that fields can have

The following query fields are generated for the articles table we just created and tracked:

# Query field
articles (
  where: articles_bool_exp
  limit: Int
  offset: Int
  order_by: [articles_order_by!]
): [articles!]!

These auto-generated fields will allow you to query data in our table.

See the query API reference for the full specifications.

Try out basic GraphQL requests

At this point, you should be able to try out basic GraphQL queries on the newly created tables from the GraphiQL tab in the console. (You may want to add some sample data into the tables first)

  • Query all rows in the articles table:

    query {
      articles {
        id
        title
        author_id
      }
    }
    
    query { articles { id title author_id } }
    { "data": { "articles": [ { "id": 1, "title": "sit amet", "author_id": 4 }, { "id": 2, "title": "a nibh", "author_id": 2 }, { "id": 3, "title": "amet justo morbi", "author_id": 4 }, { "id": 4, "title": "vestibulum ac est", "author_id": 5 } ] } }