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
After calling the mutation, the refreshInfiniteQueries and refreshQueries are not effectively refreshing the related queries.
Example:
final query =useInfiniteQuery<List<Post>, dynamic, dynamic>(
"following-feed",
...
);
final mutation =useMutation<void, dynamic>(
mutationKey:'create_post',
refreshInfiniteQueries: ['following-feed'],
...
);
Expected Behavior:
After a successful creation mutation, the 'following-feed' query should be refreshed automatically. Ensure that the refreshInfiniteQueries configuration is correctly set and the query is properly identified.
After calling the mutation, the refreshInfiniteQueries and refreshQueries are not effectively refreshing the related queries.
Example:
Expected Behavior:
After a successful creation mutation, the 'following-feed' query should be refreshed automatically. Ensure that the refreshInfiniteQueries configuration is correctly set and the query is properly identified.
Environment:
Flutter: 3.16.2
fl_query: 1.0.0
fl_query_hooks: 1.0.0
The text was updated successfully, but these errors were encountered: