Any way to reach the context inside the `formatError` function? I couldn't find anything about it in the docs. ```ts export const graphQlRoute = graphqlExpress(req => ({ schema, context: { user: req.user }, formatError })) ```
Any way to reach the context inside the
formatErrorfunction? I couldn't find anything about it in the docs.