cached_query
cached_query copied to clipboard
Simple caching for flutter apps
Can windows and linux support be implemented using sqflite_ffi? https://github.com/tekartik/sqflite/blob/master/sqflite_common_ffi/doc/using_ffi_instead_of_sqflite.md
I fetch a List then change list type to change the key then list can create a new query to fetch another list with new filter it work until i...
Hello, thanks very much for a great package, got a few questions.. first, could we please have more examples of `cached_query`, perhaps alongside some state management solutions such as `flutter_bloc`?...
First of all GREAT WORK! What I am missing in the framework is to know exactly what is beeing loaded. This is so you can decide wether to show a...
First of all great work! Regarding my issue, I searched ages and dived deep into the framework code on how to be able to invalidate a query and only refetch...
Hi, I’d like to request the ability to create multiple `CachedQuery` instances, instead of just using a singleton. This would make managing queries easier in larger apps and prevent potential...
The purpose is to replicate the behavior of the [enabled](https://tanstack.com/query/v4/docs/framework/react/guides/disabling-queries) flag from Tanstack Query. I needed to create the `QueryConfig.copyWith` function to keep the constructor constant, and I also needed...
The current implementation requires verifying the `QueryState.status` field to determine the UI to branch to. A better pattern would be to leverage sealed classes for exhaustive type checking which would...
### Is your feature request related to a problem? Please describe. Currently, `InfiniteQueryState` holds a `List`, which makes it impossible to determine which items belong to which page and to...
**Is your feature request related to a problem? Please describe.** React Query provides an option to handle pagination with a `getPreviousPageParam` function, which allows users to fetch previous pages as...