-
Notifications
You must be signed in to change notification settings - Fork 995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: Graphql handler is not executed if it's a wrapper #11450
Comments
Hey @jan-stehlik, thanks for super clear issue and the reproduction repo! Can you try switching your handler to an arrow function? - export async function handler(event, context) {
+ export const handler = async (event, context) => { I think this might let you move forward but even if it does this is still something I will address. The syntactic flavour shouldn't break your app. |
Hmm there's more problems here than just that syntax issue we have. So the root cause here is two fold:
But turns out it doesn't even matter that there's a bug with 1. because:
I'll probably need to sound this out again with the team because when I write out the behaviour here it feels a little icky. The less misdirection we do the better. For what it's worth I might suggest looking into the server file: https://docs.redwoodjs.com/docs/docker/#using-the-server-file. I don't know if this could make it more ergonomic to do things at the request level like your wrapping. The server file is a little under loved and needs more attention. I'm personally pushing for it to be a first class redwood citizen. |
Thanks @Josh-Walker-GM . We are actually using server file, but don't think that helps with this issue. We use it to configure our fastify server, not sure how can you configure graphql server via that? |
Cool to hear! What I'll do is try to see if it is possible to that configuration or not and get back to you. |
Hi @jan-stehlik might you explain the goal or purpose of the wrappers is: export async function handler(event, context) {
// this never gets fired
console.log(`in handler wrapper`)
const requestIdHeader = 'x-request-id'
const requestId = event.headers[requestIdHeader]
const store: Store = new Map([['requestId', requestId]])
const response = await executionContext.run(store, () => {
return graphqlHandler(event, context)
})
return {
...response,
headers: { ...(response.headers ?? {}), [requestIdHeader]: requestId },
}
} Do you want to pass in a request id on header, extract it, and then also include it on the headers back in the response? If so I think writing a custom envelop/yoga plugin could work great here to:
See: https://the-guild.dev/graphql/envelop/v4/plugins/lifecycle |
thanks @dthyresson , the reason for our wrapper is to have improved observability capabilities. We log extra metadata that is dynamic per request we are interested in logging metadata like requestId or userId // executionContext.ts
import { AsyncLocalStorage } from 'node:async_hooks'
export type StoreKey = 'userId' | 'requestId' | 'webhook'
export type Store = Map<StoreKey, string>
export const executionContext = new AsyncLocalStorage<Store>() we use this context to log custom data that is dynamic // logger.ts
function createLogger()_ {
return winston.createLogger({
format: winston.format.combine(
winston.format((info) => {
// log context specific data
const store = executionContext.getStore()
? executionContext.getStore()
: new Map()
for (const [key, value] of store) {
info[key] = value
}
return info
})(),
),
// ..
})
}
export const logger = createLogger() finally we populate this metadata on request basis // graphql.ts
const graphQLHandler = createGraphQLHandler({
async context({ context }: { context: RedwoodGraphQLContext }) {
const enrichedContext = await buildContext(context)
if (enrichedContext.currentUserId) {
executionContext.getStore()?.set('userId', enrichedContext.currentUserId)
}
return enrichedContext
},
// ...
})
export async function handler(event, context) {
const requestIdHeader = 'x-request-id'
const requestId = event.headers[requestIdHeader] ?? scuid()
const store: Store = new Map([['requestId', requestId]])
const response = await executionContext.run(store, () =>
graphQLHandler(event, context)
)
return {
...response,
headers: { ...(response.headers ?? {}), [requestIdHeader]: requestId },
}
} then when we e.g. use logger in our resolver, we automatically log // mutation.ts
// automatically logs requestId & userId
logger.info('my mutation', { data: { currentUser } }) i'll look into envelop plugin, but i'm not sure if I can have a logger that retrieves request specific metadata and automatically attaches it, any ideas welcome! |
What's not working?
When creating a wrapper called handler around
createGraphQLHandler
function it never get executed.Example
graphql.ts
When you run this app, the
console.log(
in handler wrapper)
never gets fired.How do we reproduce the bug?
console.log(
in handler wrapper)
doesn't get triggeredWhat's your environment? (If it applies)
Are you interested in working on this?
The text was updated successfully, but these errors were encountered: