We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
our package.json has dependency for
"graphql": "^15.5.0" "apollo": "*"
which installs in version 14.7.0 in ./node_modules/apollo-language-server/node_modules/graphql and version 15.5.2 in ./node_modules/graphql
cousing conflict when using npx apollo codegen:generate
"Cannot use GraphQLScalarType "ID" from another module or realm."
deleting ./node_modules/apollo-language-server/node_modules/graphql folder fixes the issue
I am wondering why is there different version when graphql is already installed in node_modules/graphql
The text was updated successfully, but these errors were encountered:
+1 having the same issue
Sorry, something went wrong.
+1
I've added a (temporary) postinstall script to get around this bug. #2415 (comment)
graphql-language-service-*
@cblaettl Thanks. As you said, by adding the postinstall script to my package.json file, I could solve the problem.
No branches or pull requests
our package.json has dependency for
"graphql": "^15.5.0"
"apollo": "*"
which installs in version 14.7.0 in ./node_modules/apollo-language-server/node_modules/graphql
and version 15.5.2 in ./node_modules/graphql
cousing conflict when using npx apollo codegen:generate
"Cannot use GraphQLScalarType "ID" from another module or realm."
deleting ./node_modules/apollo-language-server/node_modules/graphql folder fixes the issue
I am wondering why is there different version when graphql is already installed in node_modules/graphql
The text was updated successfully, but these errors were encountered: