Replies: 2 comments
-
This is also happening, if a component loads data via
and someReactiveProperty gets changed within the component. Query is correctly rerun, but loading state remains false. |
Beta Was this translation helpful? Give feedback.
0 replies
-
I had a similar issue with react-apollo, and it was "fixed" by setting notifyOnNetworkStatusChange=true on the Query component. I swear this has worked on other queries in my project before without adding that flag, but it's working now so i'm happy. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
When fetchMore is running, $apollo.queries.myquery.loading is false.
Other people have had this problem with apollo-client and solved it with
notifyOnNetworkStatusChange: true
( see apollographql/apollo-client#1617 or apollographql/react-apollo#727 )
But it doesn't seem to solve the problem in vue-apollo
Thanks in advance for your help.
Update:
loading does become true; but only in the component that called the fetchMore
In other components using this query, loading is true during the first fecthing, but not during the fetchMore.
Beta Was this translation helpful? Give feedback.
All reactions