You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Intended outcome: I want to use mergeSchemas to merge a remote and a local schema. I expect this piece of code to work: const schema = mergeSchemas({ schemas: [localSchema, remoteSchema ]});. Based on the Apollo docs.
Actual outcome: TypeScript error: Property 'resolvers' is missing in type '{ schemas: GraphQLSchema[]; }'.'
How to reproduce the issue: Create two executable schemas using makeExecutableSchema and merge.
The text was updated successfully, but these errors were encountered:
Intended outcome: I want to use
mergeSchemas
to merge a remote and a local schema. I expect this piece of code to work:const schema = mergeSchemas({ schemas: [localSchema, remoteSchema ]});
. Based on the Apollo docs.Actual outcome: TypeScript error:
Property 'resolvers' is missing in type '{ schemas: GraphQLSchema[]; }'.'
How to reproduce the issue: Create two executable schemas using
makeExecutableSchema
and merge.The text was updated successfully, but these errors were encountered: