-
Notifications
You must be signed in to change notification settings - Fork 470
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
Some kind of conflict with graphql-js 14.0.0 #577
Comments
Given you say you are not trying to query with |
@ravangen I know what it does and I need it, just saying that I'm not adding it as a field in any Anyway, removing it just changes the error to something else. Still doesn't work. |
I have the same issue. Only for fragments though. When I remove the fragments I get this error message, which I think is the actual problem:
I guess this means that |
The version doesn't appear to matter. My main module depends on |
I also have same issue with apollo 1.9.1 and 1.9.2 and gql 14.0.x, reverting to 0.13.2 resolves:
|
I get the following error when using the command
|
Minimal repro here: https://github.com/Slessi/apollo-minimal-repro |
Adding this to my |
Not being able to support GQL 0.14 is understandable, but at least update the 'quick' setup guide to indicate that apollo only works with 0.13 at the moment and that people need to |
I can confirm that deleting the folder I looked at the dependencies for the apollo package and see that it is using |
#624 Should resolve this |
Minimal repro here: https://github.com/Slessi/apollo-minimal-repro
Using apollo cli (tried
1.7.1
and1.9.1
) with graphql-js14.0.0
doesn't seem to work for generating queries.Generating schema still ok.
OK:
NOT OK:
The problem begins when my project requires
14.0.0
.I can "fix" the problem by deleting
node_modules/apollo/node_modules/graphql/
as the library then usesnode_modules/graphql
, which is14.0.0
, so maybe just needs a version bump? Don't understand why there would be a problem when both versions exist.The text was updated successfully, but these errors were encountered: