-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
fix(angular-query): support inject(QueryClient) #8292
Conversation
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 62e59e7. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 2 targetsSent with 💌 from NxCloud. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8292 +/- ##
===========================================
+ Coverage 46.00% 88.25% +42.25%
===========================================
Files 200 17 -183
Lines 7526 264 -7262
Branches 1729 40 -1689
===========================================
- Hits 3462 233 -3229
+ Misses 3687 30 -3657
+ Partials 377 1 -376
|
It is initially surprising users of the library that
inject(QueryClient)
doesn't work andinjectQueryClient()
has to be used. This change allowsinject(QueryClient)
as expected.