I managed to setup logging graphQL errors with:
app.use('/graphql', graphqlHTTP(request => {
return {
schema,
rootValue: {
request
},
formatError: error => {
const params = {
message : error.message,
locations: error.locations,
stack : error.stack
};
winston.error(`message: "${error.message}", QUERY: "${request.body.query}"`);
// Optional ${request.body.operationName} ${request.body.variables}
return (params);
}
}
}));
How can I set up a general function that can access the request and response, even when there is no error?
Edit: I've managed to log all requests by:
function loggingMiddleware(req, res, next) {
if (req.url.startsWith('/graphql')) {
winston.debug('REQUEST: ', req.body);
}
next();
}
app.use(loggingMiddleware);
before I call app.use('/graphql')
, but still don't know how to run a "post graphql handling" handler to log the response as well.
You can proxy the
req.send()
function in express.This is just to show you how you can achieve something like this.
I see you use winston, so I'd suggest you to use express-winston.
Also, check this out.