Starlord
Starlord3mo ago

optimistic updates for paginated queries

is it possible to have optimistic update of paginated query localstore?
2 Replies
sshader
sshader3mo ago
It's possible, but is a little tricker than updating a non-paginated query. A paginated query under the hood is a few separate queries that all get stitched together by usePaginatedQuery and your optimistic update probably wants to find one of them and update just one of them. What's the update you want to do? E.g. adding an item to the beginning, updating an existing item I can share some code snippets for what we do in the dashboard for updating an existing item (oop raced with https://discord.com/channels/1019350475847499849/1019350478817079338/1318612673348505792 but optimisticallyUpdateValueInPaginatedQuery was what I was looking for)
Starlord
StarlordOP3mo ago
i will check thanks

Did you find this page helpful?