npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@forestadmin-experimental/datasource-graphql-hasura

v1.0.0

Published

A Forest Admin datasource that connects to a [Hasura](https://hasura.io/) GraphQL API, automatically introspecting your schema and exposing your tables as Forest Admin collections.

Readme

@forestadmin-experimental/datasource-graphql-hasura

A Forest Admin datasource that connects to a Hasura GraphQL API, automatically introspecting your schema and exposing your tables as Forest Admin collections.

Installation

npm install @forestadmin-experimental/datasource-graphql-hasura

Quick start

import { createAgent } from '@forestadmin/agent';
import { createGraphqlDataSource } from '@forestadmin-experimental/datasource-graphql-hasura';

const agent = createAgent({
  authSecret: process.env.FOREST_AUTH_SECRET,
  envSecret: process.env.FOREST_ENV_SECRET,
});

agent.addDataSource(
  createGraphqlDataSource({
    uri: 'https://my-hasura-instance.hasura.app/v1/graphql',
    headers: {
      'x-hasura-admin-secret': process.env.HASURA_ADMIN_SECRET,
    },
    excludedTables: ['_prisma_migrations'],
  }),
);

agent.start();

Configuration

| Option | Type | Required | Description | | ---------------- | ------------------------ | -------- | -------------------------------------------------------------------------------------------- | | uri | string | Yes | Hasura GraphQL endpoint URL | | headers | Record<string, string> | No | HTTP headers (e.g. x-hasura-admin-secret) | | includedTables | string[] | No | Whitelist of table names to expose | | excludedTables | string[] | No | Blacklist of table names to hide | | metadataUri | string | No | Override metadata endpoint (defaults to uri with /v1/graphql replaced by /v1/metadata) |

Features

Schema introspection

The datasource automatically discovers your Hasura schema using two parallel requests:

  1. GraphQL introspection — discovers tables, columns, primary keys, and field types
  2. Hasura metadata API — resolves relationship mappings (foreign keys). Falls back to naming-convention heuristics if the metadata endpoint is unavailable.

System tables (pg_*, hdb_*, information_schema, etc.) are excluded automatically.

Supported type mappings

| Hasura / PostgreSQL types | Forest Admin type | | ------------------------------------- | ----------------- | | Int, Float, numeric, bigint | Number | | String, text, varchar, bpchar | String | | Boolean | Boolean | | uuid | Uuid | | timestamptz, timestamp | Date | | date | Dateonly | | time, timetz | Time | | jsonb, json | Json | | bytea | Binary | | _text, _int4, etc. (array types) | [BaseType] |

CRUD operations

  • List — with filtering, sorting, pagination, and nested field projection
  • Create — single record insertion
  • Update — partial updates (sends only changed fields)
  • Delete — with filter support
  • Count — enabled by default

Filtering

Full support for Forest Admin filter operators, translated to Hasura _bool_exp clauses:

Equal, NotEqual, LessThan, GreaterThan, In, NotIn, Contains, StartsWith, EndsWith, Like, ILike, Present, Missing, Before, After, IncludesAll, IncludesNone, ContainsKey, and more.

Nested relationship filters are also supported (e.g. filtering posts by author:name).

Sorting

Supports ascending/descending sorting, including on nested relationship fields.

Aggregation

Supports Count, Sum, Avg, Min, Max operations. Grouped aggregation is supported for foreign key fields using Hasura's nested aggregate pattern.

Relations

  • ManyToOne (Hasura object relationships)
  • OneToMany (Hasura array relationships)

Caching introspection

To avoid re-introspecting the schema on every server restart, you can cache the introspection result:

import {
  introspect,
  createGraphqlDataSource,
} from '@forestadmin-experimental/datasource-graphql-hasura';

// Run once and persist the result (e.g. to disk or cache)
const schema = await introspect({
  uri: 'https://my-hasura-instance.hasura.app/v1/graphql',
  headers: { 'x-hasura-admin-secret': process.env.HASURA_ADMIN_SECRET },
});

// Pass it on startup
agent.addDataSource(createGraphqlDataSource(options, { introspection: schema }));

License

GPL-3.0 — see LICENSE.