-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(react-query): Add usePrefetchQueries
hook
#8734
base: main
Are you sure you want to change the base?
Conversation
View your CI Pipeline Execution ↗ for commit f8860e5.
☁️ Nx Cloud last updated this comment at |
b3564b1
to
90802bc
Compare
usePrefetchQueries
hookusePrefetchQueries
hook
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8734 +/- ##
===========================================
+ Coverage 46.33% 84.38% +38.04%
===========================================
Files 199 27 -172
Lines 7551 333 -7218
Branches 1729 80 -1649
===========================================
- Hits 3499 281 -3218
+ Misses 3672 44 -3628
+ Partials 380 8 -372
|
90802bc
to
cfc4a49
Compare
export function usePrefetchQueries( | ||
options: { | ||
queries: ReadonlyArray<FetchQueryOptions<any, any, any, any>> | ||
}, | ||
queryClient?: QueryClient, | ||
) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is FetchQueryOptions<any, any, any, any>
really good enough here?
No description provided.