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

@woof-software/subgraph-sdk

v0.0.26

Published

SDK for streamlined access to subgraphs, designed for clarity, reusability, and minimal overhead.

Readme

@woof-software/subgraph-sdk

A lightweight and efficient SDK for interacting with subgraphs (The Graph), designed for clarity, reusability, and minimal overhead.


Installation

npm install @woof-software/subgraph-sdk

Quickstart

import { fetchSingle, fetchCollection, formWhere } from '@woof-software/subgraph-sdk';

// Simple query example
const query = `{
  markets(first: 1) { id name }
}`;
const url = 'https://api.thegraph.com/subgraphs/name/your/subgraph';
const data = await fetchSingle(query, url);
console.log(data);

// Paginated query example
import type { CollectionCallbackParams } from '@woof-software/subgraph-sdk';

const collectionQuery = (skip: number, pageSize: number) => `{
  markets(first: ${pageSize}, skip: ${skip}) { id name }
}`;

await fetchCollection(
  collectionQuery,
  (result, params: CollectionCallbackParams) => {
    if (!result.data.markets.length) params.loopFlag = false;
    // process each page
    console.log(result.data.markets);
  },
  url
);

API

fetchSingle

async function fetchSingle<T = any>(
  query: string,
  subgraphUrl: string,
  options?: { token?: string }
): Promise<T>
  • query: String with the GraphQL query
  • subgraphUrl: The subgraph endpoint URL
  • options.token: (optional) Bearer token for authorization

Returns: Promise<T> — the query result (usually an object with a data field).


fetchCollection

async function fetchCollection(
  iterationQueryFactory: CollectionQueryFactory,
  iterationCallback: CollectionCallback,
  subgraphUrl: string,
  options?: { token?: string }
): Promise<void>
  • iterationQueryFactory(skip, pageSize): function returning a GraphQL query string for each page
  • iterationCallback(result, params): function to process each page
    • params.loopFlag: set to false to stop pagination
    • params.pageSize: page size
  • subgraphUrl: The subgraph endpoint URL
  • options.token: (optional) Bearer token for authorization

Types

export type CollectionQueryFactory = (skip: number | string, pageSize: number | string) => string;
export type CollectionCallback = (result: any, params: CollectionCallbackParams) => void;
export interface CollectionCallbackParams {
  pageSize: number;
  loopFlag: boolean;
}
export interface PaginationParams {
  cursorValue?: string;
  cursorFieldName: string;
  sortOrder: 'asc' | 'desc';
  first: string | number;
}

Helpers

  • formWhere(where: Record<string, string | string[]>): string — builds a GraphQL where filter string
  • formHeaders(options?: { token?: string }): Record<string, string> — builds HTTP headers
  • formPaginationConditions(pagination: PaginationParams): string — builds pagination conditions for GraphQL

Example:

import { formWhere } from '@woof-software/subgraph-sdk';
const where = formWhere({ id: '0x123', status: ['active', 'pending'] });
// => '{ id: "0x123", status: ["active", "pending"] }'

Best Practices

  • Use fetchCollection for large datasets with page-by-page processing.
  • For complex filters, use formWhere and dynamic query generation.
  • Always handle errors (e.g., with try/catch) — the SDK throws on network or GraphQL errors.
  • For private subgraphs, use the token option.

Scripts & Testing

  • pnpm run build — build the package
  • pnpm test — run unit tests (Vitest)