Skip to content

Unable to correctly extend and type GraphQL Context #3796

Open
@chalupagrande

Description

@chalupagrande

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

  1. Checkout the main branch.
  2. Inspect src/server.ts
  3. see Typescript error on line 21

Potentially related issue:

  1. checkout branch issue1
  2. see error when trying to pass yoga to an Express Router intance

Expected behavior

  1. Context would be typed correctly and there would be no errors
  2. I would be able to pass the Yoga instance to the express router as documented here

Screenshots or Videos

Image

Platform

  • OS: MacOS Sanoma 14.5
  • NodeJS: v20.17.0
  • @graphql-yoga/* version(s): "^5.12.0"

Additional context

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions