react-graphql-github-apollo
react-graphql-github-apollo copied to clipboard
Queries (2nd load)
@rwieruch Very good example, thanks for sharing. I have a question regarding Queries, for example RepositoriesList or IssueList, and pagination.
The first time the view mounted the query retrieves 5 entries, and with fetchMore we can load another bunch of 5 entries. Nevertheless, the second time mounted the view (or any successive) the query gets from the store and shows all the entries requested before.
Is it possible to have the same user experience than in the initial case? I mean, still using the data in the store but pulling the first bunch.