This package provides a middleware for Express.js applications to manage and filter GraphQL queries based on .gql
files. It is designed to enhance security and efficiency by allowing only specified queries to be processed by your GraphQL server.
Usage with typegraphql-prisma
TypeGraphQL-Prisma is a powerful integration that significantly simplifies backend development by automatically generating a fully-featured Node.js GraphQL API based on your Prisma schema. It turns your database schema into a fully-typed GraphQL API, making it an excellent tool for developers looking to bootstrap and quickly maintain robust Node.js GraphQL servers.
With all benefits of typegraphql-prisma and its resolvers, the main concern is security. Auto-generated resolvers allow to query any relation of any level deep and no way to prevent overquerying. This little library is an attempt to set boundaries for what can be requested by clients.
- Query Filtering: Filters incoming GraphQL queries based on a list of allowed queries defined in
.gql
files. - Easy Integration: Seamlessly integrates with existing Express.js and Apollo Server setups.
- Customizable: Easily adaptable to different GraphQL schema setups.
An incoming query sent to your server might look like this:
query findOneUser {
findOneUser {
id
name
email
password
posts {
title
content
}
}
}
query findOneUser {
findOneUser {
id
posts {
title
}
}
}
The GraphQLQueryPurifier processes the input query and filters out the non-allowed fields. The output query, which will be processed by your GraphQL server, becomes:
query findOneUser {
findOneUser {
id
posts {
title
}
}
}
The email
and posts.content
fields are removed from the query since they are not included in the allowed query.
Install the package using npm:
npm install graphql-query-purifier
## Or using yarn:
yarn add graphql-query-purifier
import express from 'express';
import path from 'path';
import { json } from 'body-parser';
import { GraphQLQueryPurifier } from 'graphql-query-purifier';
const app = express();
const gqlPath = path.resolve(__dirname, '../prisma/gql');
const queryPurifier = new GraphQLQueryPurifier({
gqlPath,
// optional:
allowStudio: true,
allow: false,
debug: false,
});
// make sure body parser is placed before
app.use(json());
app.use(queryPurifier.filter);
// your graphql middleware
- GraphQLQueryPurifier(gqlPath: string)
gqlPath: Path to the directory containing your .gql files or folders with it.
- filter(req, res, next)
An Express middleware function to filter incoming GraphQL queries.
It doesn't copy .gql
files, only watches for it. If your frontend is in another repo - you may need to handle copying of files before commit.
Contributions are welcome!
This project is licensed under the MIT License.
-
Super Kick Gym - Brazilian Jiu Jitsu in Bangkok