Open
Description
Describe the bug
I am unable to correctly type the context in the following code:
const graphqlSchema = createSchema({ typeDefs, resolvers })
interface GraphQLContext extends YogaInitialContext {
something: number
}
const yoga = createYoga<GraphQLContext>({
schema: graphqlSchema,
context: {
something: 10
}
});
const server = createServer<(yoga)
server.listen(port, () => {
console.log(`[server]: Server is running at http://localhost:${port}`);
});
I get the following Typescript Error. Even if I do or do not pass the custom GraphQLContext
generic.
Type 'GraphQLResolveInfo & YogaInitialContext' is not assignable to type 'YogaInitialContext & { something: number; }'.
Property 'something' is missing in type 'GraphQLResolveInfo & YogaInitialContext' but required in type '{ something: number; }'.ts(2322)
Your Example Website or App
https://github.com/chalupagrande/yoga-graphql-server
Steps to Reproduce the Bug or Issue
- Checkout the main branch.
- Inspect
src/server.ts
- see Typescript error on line 21
Potentially related issue:
- checkout branch
issue1
- see error when trying to pass
yoga
to an Express Router intance
Expected behavior
- Context would be typed correctly and there would be no errors
- I would be able to pass the Yoga instance to the express router as documented here
Screenshots or Videos

Platform
- OS: MacOS Sanoma 14.5
- NodeJS: v20.17.0
@graphql-yoga/*
version(s): "^5.12.0"
Additional context
No response
Metadata
Metadata
Assignees
Labels
No labels