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
Ran into this as well. Turns out that for one reason or another, this library uses v0.7.2 of its graphql package dependency (before implementing multiple interfaces was even in the spec) instead of the version ^15.4.0 listed in its package.json.
Adding this to my package.json fixed it for me:
"resolutions": {
"graphql": "^15.5.3"// or whatever version of graphql you use
}
While using graphdoc I get the above error when processing a schema.
The issue seems to be the use of multiple interfaces on a type. For example;
we are using the following project to create our API;
https://github.com/graphql-dotnet/graphql-dotnet
The text was updated successfully, but these errors were encountered: