-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
feat(vue-query): useInfiniteQuery options support maybe ref type #8956
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(vue-query): useInfiniteQuery options support maybe ref type #8956
Conversation
View your CI Pipeline Execution ↗ for commit 6977598.
☁️ Nx Cloud last updated this comment at |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8956 +/- ##
===========================================
+ Coverage 44.09% 71.01% +26.91%
===========================================
Files 201 19 -182
Lines 8025 483 -7542
Branches 1762 136 -1626
===========================================
- Hits 3539 343 -3196
+ Misses 4058 110 -3948
+ Partials 428 30 -398
🚀 New features to boost your workflow:
|
@DamianOsipiuk Please review this, thank you |
@@ -49,7 +49,7 @@ type UseQueryOptionsGeneric< | |||
TQueryFnData, | |||
TError, | |||
TData, | |||
TQueryData, | |||
TQueryFnData, |
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.
I'm not sure if this is a proper change. Why this is needed?
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.
Oops! that's my fault, I'm already fix it
The useInfiniteQuery can directly use Ref in the runtime, but it's not supported at the Type level.