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

@dumbql/react

v1.0.5

Published

React bindings for @dumbql/client — hooks for query, mutate, and subscriptions

Readme


Install

npm install @dumbql/react @dumbql/client @dumbql/cache

Quick Start

import { DumbqlProvider, useQuery, gql } from '@dumbql/react';
import { createClient } from '@dumbql/client';
import { createCache } from '@dumbql/cache';

const client = createClient({ endpoint: '/graphql' });
const cache = createCache();

const GET_TODOS = gql`query Todos { todos { id title } }`;

function Todos() {
  const { data, loading, error, refetch } = useQuery(GET_TODOS);

  if (loading) return <p>Loading…</p>;
  if (error) return <p>Error: {error}</p>;

  return (
    <ul>
      {data.todos.map(todo => <li key={todo.id}>{todo.title}</li>)}
    </ul>
  );
}

function App() {
  return (
    <DumbqlProvider client={client} cache={cache}>
      <Todos />
    </DumbqlProvider>
  );
}

Hooks

useQuery

const { data, loading, error, errorCode, networkStatus, called, refetch, fetchMore } = useQuery(
  document,
  {
    variables,
    pollInterval,       // auto-polling in ms
    skip,               // skip initial fetch
    onCompleted,        // (data) => void
    onError,            // (error, errorCode?) => void
    fetchPolicy,        // 'cache-first' | 'network-only' | 'no-cache'
  },
);

Result fields:

| Field | Type | Description | |-------|------|-------------| | data | TData \| null | Response data | | loading | boolean | True during initial fetch or refetch | | error | string \| null | Error message | | errorCode | ErrorCode \| undefined | 'NO_DATA' \| 'GRAPHQL_ERROR' \| 'NETWORK_ERROR' | | networkStatus | NetworkStatus | 'loading' \| 'ready' \| 'error' \| 'refetching' \| 'poll' | | called | boolean | True after first execution | | refetch | (vars?) => Promise<GraphQLResult<T>> | Re-fetch with optional new variables | | fetchMore | (merge, vars?) => Promise<GraphQLResult<T>> | Fetch more data and merge with existing |

useMutation

const { data, loading, error, errorCode, called, mutate } = useMutation(
  document,
  {
    variables,
    onCompleted,   // (data) => void
    onError,       // (error, errorCode?) => void
    update,        // (cache, result) => void — update cache after success
  },
);

// Call mutate imperatively:
mutate(variables);

useSubscription

const { data, loading, error, errorCode } = useSubscription(
  document,
  {
    variables,
    wsEndpoint,       // default: derived from client endpoint
    shouldSubscribe,  // default: true
    onNext,           // (data) => void
    onError,          // (error, errorCode?) => void
    onComplete,       // () => void
  },
);

useLiveQuery

Real-time query: initial HTTP fetch + WebSocket subscription for updates.

const { data, loading, error, errorCode } = useLiveQuery(
  document,
  {
    variables,
    wsEndpoint,       // default: derived from client endpoint
    shouldSubscribe,  // default: true
    onCompleted,      // (data) => void
    onError,          // (error, errorCode?) => void
  },
);

Render-prop Components

| Export | Description | |--------|-------------| | <Query document variables pollInterval skip>{…}</Query> | Render prop with UseQueryResult | | <Mutation document variables>{…}</Mutation> | Render prop with (mutate, result) | | <Subscription document variables wsEndpoint>{…}</Subscription> | Render prop with UseSubscriptionResult |

Render-prop Example

import { Query, Mutation, gql } from '@dumbql/react';

const ADD_TODO = gql`mutation AddTodo($title: String!) { addTodo(title: $title) { id } }`;

function TodosPage() {
  return (
    <Query document={gql`query { todos { id title } }`}>
      {({ data, loading }) => (
        <div>
          {loading ? <p>Loading…</p> : data.todos.map(t => <p key={t.id}>{t.title}</p>)}
          <Mutation document={ADD_TODO}>
            {(mutate) => (
              <button onClick={() => mutate({ title: 'New' })}>Add</button>
            )}
          </Mutation>
        </div>
      )}
    </Query>
  );
}

Dependencies

react (^18 / ^19), @dumbql/client, @dumbql/cache, graphql