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

prisma-flat-graphql-generator

v0.2.2

Published

Prisma GraphQL Generator (flat, will not introduce performance overhead). Inspired by pal.js

Readme

Overview

prisma-flat-graphql-generator is a prisma generator designed to automatically generate GraphQL schema and resolvers from a Prisma schema. This tool streamlines the process of setting up a GraphQL server by creating a comprehensive structure of resolvers, type definitions, and input types based on your Prisma models.

Key Features:

  • Zero Dependencies: Generated code has no external runtime dependencies beyond Prisma Client and GraphQL
  • N+1 Prevention: Built-in query optimization automatically prevents N+1 issues
  • Standalone: No need for @paljs/plugins or graphql-type-json - everything is self-contained
  • Type Safe: Full TypeScript support with generated types

Installation

To install, run:

npm install prisma-flat-graphql-generator

That's it! No additional dependencies required. The generated code is completely standalone.

In your Prisma schema file, add the following generator clause:

generator graphql {
    provider = "prisma-flat-graphql-generator"
    output   = "./generated/graphql"  // Optional: specify output directory
}

Usage

1. Generate GraphQL Schema and Resolvers

Run Prisma generate:

npx prisma generate

2. Use with Apollo Server

The generated code works directly with Apollo Server - no middleware or wrapping needed:

import { ApolloServer } from '@apollo/server';
import { startStandaloneServer } from '@apollo/server/standalone';
import { PrismaClient } from '@prisma/client';
import { typeDefs, resolvers } from './generated/graphql';

const prisma = new PrismaClient();

const server = new ApolloServer({
  typeDefs,
  resolvers,
});

const { url } = await startStandaloneServer(server, {
  context: async () => ({ prisma }),
  listen: { port: 4000 },
});

console.log(`🚀 Server ready at ${url}`);

That's it! The resolvers automatically optimize queries to prevent N+1 issues.

Example

For models User and Post:

query GetUserWithPosts($userId: String!) {
  user(where: { id: { equals: $userId } }) { 
    id
    displayName
    photoURL
    posts {
      id
      text
    }
  }
}

query GetAllUsers { 
  users {
    id
    displayName
    photoURL
  }
}

Generator Configurations

You can customize the generator output with the following configurations:

  • models Specify models to generate typeDefs and resolvers for.
  • excludeModels Exclude specific models from generating typeDefs and resolvers.
  • excludeInputFields Exclude fields from filtering in GraphQL queries.
  • excludeOutputFields Exclude fields from GraphQL outputs.
  • output Set a custom output directory for the generator (Defaults to the same directory as schema.prisma file).

Testing

This library has comprehensive test coverage to ensure reliability:

npm test              # Run all tests
npm run test:watch    # Watch mode for development
npm run test:coverage # Generate coverage report

Test Suite:

  • 51 passing tests across unit and integration tests
  • Tests cover: generation, exclusions, enums, bug fixes, and edge cases
  • Recent bug fixes verified with dedicated test coverage

Recent Improvements (v0.1.13):

  • ✅ Fixed duplicate type definitions in generated GraphQL schemas
  • ✅ Fixed GraphQL formatting to ensure consistent output
  • ✅ Fixed nested relation handling to support deep query optimization
  • ✅ Fixed _count and aggregate fields causing introspection failures
  • ✅ Added 21 new tests specifically for bug fixes

See CHANGELOG.md for detailed release notes.

Acknowledgments

This library was inspired by Ahmed Elywa's work on paljs.

Limitations

Currently, this generator does not support mutations such as create, update, or delete.

Contributing

Contributions are welcome to extend the functionality, including support for mutations and more.

See CLAUDE.md for development guidelines and architecture details.