Skip to main content
Version: v3.x

Get Started

This tutorial focuses on building a native data connector for Hasura in Typescript, which thus enables the integration of various data sources into your Hasura Supergraph.

This initial section goes through the basic setup and scaffolding of a connector using the Hasura TypeScript connector SDK and a local SQLite database.

It covers:

  • The creation of types for configurations and state
  • The implementation of essential functions following the SDK guidelines.
  • A test suite to ensure the connector's functionality.
  • The integration of the connector with Hasura.

Let's get started...

Loading...