graphql-pino-middleware 🚀
GraphQL middleware to instrument resolvers with pino logger. This middleware intends to remove cross-cutting concerns from the application by providing logger in the resolver context.
Table of contents
Getting started
- Install the
graphql-pino-middleware
and graphql-middleware
packages
yarn add graphql-pino-middleware
yarn add graphql-middleware
- Create the pino logger and configure the middleware with options
import pino from "pino";
import graphqlPinoMiddleware from "graphql-pino-middleware";
const logger = pino();
const loggerMiddleware = graphqlPinoMiddleware({
logger
});
- Apply the middleware to the schema
import express from "express";
import graphqlExpressHttp from "express-graphql";
import { applyMiddleware } from "graphql-middleware";
import { makeExecutableSchema } from "graphql-tools";
const typeDefs = `
type Query {
hello(name: String): String
}
`;
const resolvers = {
Query: {
hello: (parent, args, context) => {
const result = `Hello ${args.name ? args.name : "world"}!`;
context.logger.info({
helloResolver: result
});
return result;
}
}
};
const schema = applyMiddleware(
makeExecutableSchema({ typeDefs, resolvers }),
loggerMiddleware
);
const app = express();
app.use(
"/graphql",
graphqlExpressHttp({
schema: schema,
rootValue: resolvers,
graphiql: true
})
);
API
middleware = graphqlPinoMiddleware([options])
options
logger
: An optional pino
loggerhooks
: Lost of PreResolve
and PostResolve
hooks
Refer the examples for more usage examples
Contributing
graphql-pino-middleware
package intends to support contribution and support and thanks the open source community to making it better. Read below to learn how you can improve this repository and package
Code of Conduct
Please check the CODE OF CONDUCT which we have in place to ensure safe and supportive environment for contributors
Contributing
Feel free to create issues and bugs in the issues section using issues and bugs template. Please also ensure that there are not existing issues created on the same topic
Good first issues
Please check issues labeled #good-first-issues under the issues section
Licence
graphql-pino-middleware
uses MIT Licence