-
-
Notifications
You must be signed in to change notification settings - Fork 523
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
[BUG] An error occurs when you do multiple queries and in subsequent queries use the value from the first query. #432
Comments
Can confirm! |
Guys from another issue found a quick workaround: With NPM I got a downgrade to work after installing: |
If you use the vue apollo cli plugin - you just need to set the resolutions property for apollo-utilities. Thats it ;) "dependencies": {
"apollo-client": "2.4.3",
"graphql": "14.0.2",
"vue": "2.5.17",
"vue-apollo": "3.0.0-beta.25"
},
"resolutions": {
"apollo-utilities": "1.0.21"
}, |
It was fixed in the last version. Just update apollo-client to 2.4.4. |
bug again appear in apollo-utilities 1.0.25, in 1.0.24 ok |
Just checked the reproduction above, and the bug is definitely not happening with the latest package versions, specifically "dependencies": {
"apollo-cache-inmemory": "1.3.8",
"apollo-client": "2.4.5",
"apollo-utilities": "1.0.25"
} @dimensi Please check your dependencies, and/or provide a new reproduction. If the error is different, please open a new issue. |
I've noticed that this issue arise with "[email protected]"
Step to reproduce:
You will see an error like:
"TypeError: Invalid property descriptor. Cannot both specify accessors and a value or writable attribute, #<Object>"
https://codesandbox.io/s/436n4pnow7
The text was updated successfully, but these errors were encountered: