You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am trying to use @paginate in a paginatedFragment()inSinglePage` mode (with a Relay connection + cursor), but the store is never updated with the next page data after I call loadNextPage()
When I switch to the Infinite mode the new nodes are added to the store.
In SinglePage mode, even though I see the graphql request for the next page fired from the browser and the next nodes are returned, the new nodes in the returned data is never set in the store..
I managed to reproduce the problem by forking the fragment/forward-cursor e2e test.
Severity
serious, but I can work around it
Steps to Reproduce the Bug
inside a paginatedFragment, set the @paginate mode to SinglePage
call loadNextPage(), this triggers the graphql call to get the next set of nodes
the paginated fragment store data is never updated
Describe the bug
Hi,
I am trying to use @paginate in a paginatedFragment()
in
SinglePage` mode (with a Relay connection + cursor), but the store is never updated with the next page data after I call loadNextPage()When I switch to the
Infinite
mode the new nodes are added to the store.In
SinglePage
mode, even though I see the graphql request for the next page fired from the browser and the next nodes are returned, the new nodes in the returned data is never set in the store..I managed to reproduce the problem by forking the fragment/forward-cursor e2e test.
Severity
serious, but I can work around it
Steps to Reproduce the Bug
inside a paginatedFragment, set the @paginate mode to SinglePage
call loadNextPage(), this triggers the graphql call to get the next set of nodes
the paginated fragment store data is never updated
Reproduction
https://github.com/vboulaye/houdini/tree/paginated-fragment-single-page/e2e/kit/src/routes/pagination/fragment/forward-cursor-single-page
The text was updated successfully, but these errors were encountered: