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

@lewebsimple/graphql-codegen-zod

v0.2.1

Published

GraphQL Codegen preset for generating Zod schemas.

Readme

GraphQL Codegen Zod

GraphQL Codegen preset for generating Zod schemas.

Install

pnpm add -D @lewebsimple/graphql-codegen-zod
pnpm add graphql zod

Usage

codegen.yml

schema: src/schema.graphql
documents: src/**/*.gql
generates:
  src/generated/registry.ts:
    preset: "@lewebsimple/graphql-codegen-zod"

Run:

pnpm graphql-codegen

Output

The preset generates Zod schemas for:

  • enums
  • fragments
  • operations (result and variables)
  • top-level registry

Document directives

Directive registry data lives in src/directives/, and each directive declares both:

  • the capabilities it requires before it may run
  • the capability transitions it performs after it runs

Internally, capabilities use a prefixed taxonomy such as io:output, type:scalar, null:allowed, optional:rejected, and transform:allowed. These guardrails let generation fail deterministically when incompatible directives are composed.

Supported directives:

  • @email on scalar fields or variables: emits z.email().
  • @nonNull(target: SELF | ITEMS | SELF_AND_ITEMS) on nullable fields or variables: removes .nullable() from the current value, the immediate list item type, or both.
  • @nullTo(value: ZodValue!, target: SELF | ITEMS) on nullable scalar fields or variables: accepts null and transforms it to the provided literal fallback.
  • @nullToUndefined on nullable fields or variables: accepts null and transforms it to undefined.
  • @nullToEmpty on nullable list fields or variables: accepts null and transforms it to [].
  • @filterNullItems on list fields or variables: filters null items out of the immediate list level without rejecting the whole list.

Example:

query AllFilms {
  allFilms @nonNull {
    films @nullToEmpty @filterNullItems {
      title @nonNull
      director @nonNull
    }
  }
}

Notes:

  • If your codegen setup validates documents, define these directives in your schema (or schema extensions) so validation succeeds.
  • Generated documents.ts artifacts strip these codegen-only directives before emitting runtime DocumentNodes.
  • ITEMS and SELF_AND_ITEMS apply to one list level only.
  • @nullTo currently supports built-in GraphQL scalar fallbacks with literal values.
  • These directives currently apply to operation/fragment result schemas and operation variables.

Capability guardrails

Directive capability violations are hard errors during generation.

  • Pre- and post-transition invariants are checked around each directive application.
  • Unknown transition capabilities, overlapping adds/removes, and invalid removals fail generation.
  • Invalid directive targets or conflicting directive combinations are not downgraded to warnings.

Tooling schema extension

If you want editor/codegen validation and autocomplete for directives, import the schema extender from the dedicated subpath:

import { extendSchemaWithZodDirectives } from "@lewebsimple/graphql-codegen-zod/extend-schema";

This helper is intentionally exported separately from the preset entrypoint.

It extends the schema with the supported directive definitions plus the shared ZodValue scalar and ZodDirectiveTarget enum used by directive arguments.