Skip to content

Conversation

@DogPawHat
Copy link
Contributor

@DogPawHat DogPawHat commented Nov 1, 2025

🎯 Changes

Implements #9135

  • renames fetchQuery and fetchInfiniteQuery to query and infiniteQuery
  • make new fetch* aliases for the renamed methods
  • delegates the prefetch* methods with query instead of fetchQuery
  • delegates ensureQueryData methods to query with staletime: 'static'
  • updates tests for QueryClient (straight copy of the fetch tests)
  • added new methods to vue-query QueryClient subclass.

TODO when this is merged (I have stacked branchs for these)

  • add new docs
  • refactor all the other tests to use the new methods (can be split up by package)
  • add deprecation tags to old methods

✅ Checklist

  • I have followed the steps in the Contributing guide.
  • I have tested this code locally with pnpm run test:pr.

🚀 Release Impact

  • This change affects published code, and I have generated a changeset.
  • This change is docs/CI/dev-only (no release).

Summary by CodeRabbit

  • New Features

    • Added support for a select option in query and infinite-query flows
    • Exported InfiniteQueryExecuteOptions and a public noop helper
  • Chores

    • Introduced new imperative methods query and infiniteQuery while preserving legacy wrappers for compatibility
    • Documented renamed imperative method surface in release notes
  • Tests

    • Expanded tests for types and behavior: queries, infinite paging, prefetch, staleTime, and select interactions

@changeset-bot
Copy link

changeset-bot bot commented Nov 1, 2025

🦋 Changeset detected

Latest commit: 1338e8e

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 19 packages
Name Type
@tanstack/react-query Minor
@tanstack/query-core Minor
@tanstack/vue-query Minor
@tanstack/react-query-devtools Major
@tanstack/react-query-next-experimental Major
@tanstack/react-query-persist-client Major
@tanstack/angular-query-experimental Patch
@tanstack/query-async-storage-persister Patch
@tanstack/query-broadcast-client-experimental Patch
@tanstack/query-persist-client-core Patch
@tanstack/query-sync-storage-persister Patch
@tanstack/solid-query Patch
@tanstack/svelte-query Patch
@tanstack/vue-query-devtools Major
@tanstack/angular-query-persist-client Patch
@tanstack/solid-query-persist-client Patch
@tanstack/svelte-query-persist-client Patch
@tanstack/solid-query-devtools Patch
@tanstack/svelte-query-devtools Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Nov 1, 2025

Walkthrough

Adds imperative methods query and infiniteQuery, introduces QueryExecuteOptions and exported InfiniteQueryExecuteOptions, updates infinite-pages and staleTime typings, adds exported noop, routes infinite flow through the new execute surface, and expands type and runtime tests for select, staleTime, and infinite-query behaviors.

Changes

Cohort / File(s) Change Summary
Core Client Implementation
packages/query-core/src/queryClient.ts
Added query and infiniteQuery methods and overloads; routes infinite flow through the new query surface; preserves compatibility wrappers for fetchQuery / fetchInfiniteQuery; integrates select handling and staleTime via new execute-option signatures.
Public Types & Typings
packages/query-core/src/types.ts
Added QueryExecuteOptions and exported InfiniteQueryExecuteOptions; introduced InfiniteQueryPages (renamed from FetchInfiniteQueryPages); updated FetchInfiniteQueryOptions and related Ensure* typings to align with new execute-option shapes and infinite-pages model.
Public Helper Export
packages/query-core/src/__tests__/queryClient.test.tsx and package export surface
Added and exported noop helper used by prefetch wrappers and in tests.
Type Tests — Query Client
packages/query-core/src/__tests__/queryClient.test-d.tsx
Expanded type tests to include InfiniteQueryExecuteOptions; assert fetchQuery/fetchInfiniteQuery disallow select; verify InfiniteData shapes and select behavior across entry points.
Runtime Tests — StaleTime & Prefetch
packages/query-core/src/__tests__/queryClient.test.tsx
Added comprehensive static staleTime tests covering standard/infinite/prefetch variants, cached-data edge cases, initialData behavior, background revalidation, meta/invalidation, and GC interactions.
Vue Integration
packages/vue-query/src/queryClient.ts
Added query and infiniteQuery overloads accepting QueryExecuteOptions / InfiniteQueryExecuteOptions and MaybeRefDeep variants; implementations delegate to super with cloneDeepUnref.
React Type Tests — Select Behavior
packages/react-query/src/__tests__/infiniteQueryOptions.test-d.tsx, packages/react-query/src/__tests__/queryOptions.test-d.tsx
Added type tests validating select interactions for useInfiniteQuery, useSuspenseInfiniteQuery, and infiniteQuery; confirmed fetchInfiniteQuery / fetchQuery ignore select and preserve original types.
Changeset
.changeset/famous-owls-battle.md
Records minor bumps for @tanstack/react-query, @tanstack/query-core, and @tanstack/vue-query and notes "renamed imperative methods".

Sequence Diagram(s)

sequenceDiagram
    autonumber
    participant Caller as Caller
    participant QClient as QueryClient
    participant CoreExec as Core Executor
    participant Cache as Cache/Network
    participant Select as select (optional)

    Caller->>QClient: query(options) / infiniteQuery(options)
    QClient->>CoreExec: delegate with QueryExecuteOptions / InfiniteQueryExecuteOptions
    CoreExec->>Cache: fetch/resolve raw TQueryData or pages
    Cache-->>CoreExec: raw TQueryData or pages
    alt select provided
        CoreExec->>Select: apply select(raw TQueryData or pages)
        Select-->>CoreExec: transformed TData / pages
        CoreExec-->>QClient: Promise<TData / InfiniteData<TData,...>>
    else no select
        CoreExec-->>QClient: Promise<TQueryData / InfiniteData<TQueryData,...>>
    end
    QClient-->>Caller: resolved data
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~60 minutes

  • Areas needing careful review:
    • packages/query-core/src/types.ts — new generics, execute-option shapes, infinite-pages typing.
    • packages/query-core/src/queryClient.ts — overloads, wrapper compatibility, select/staleTime integration.
    • packages/query-core/src/__tests__/queryClient.test.tsx — extensive staleTime and prefetch test coverage.
    • packages/vue-query/src/queryClient.ts — MaybeRefDeep overloads and cloneDeepUnref delegation.
    • Cross-package type consistency across react-query, vue-query, and query-core.

Suggested reviewers

  • TkDodo
  • DamianOsipiuk

Poem

🐰 I hopped through lines with keys clutched tight,
renamed some calls and tuned types just right.
Pages now dance, selects take their cue,
tests munched carrots, and types said "phew!" 🥕

Pre-merge checks and finishing touches

✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The PR title 'init query rename and delegation' accurately captures the main changes: renaming fetchQuery/fetchInfiniteQuery to query/infiniteQuery and delegating methods, though it uses technical shorthand.
Description check ✅ Passed The PR description follows the template with completed checklist items and clearly explains the changes, though the rationale for design decisions and implementation details are somewhat compressed.
✨ Finishing touches
  • 📝 Generate docstrings
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@nx-cloud
Copy link

nx-cloud bot commented Nov 1, 2025

🤖 Nx Cloud AI Fix Eligible

An automatically generated fix could have helped fix failing tasks for this run, but Self-healing CI is disabled for this workspace. Visit workspace settings to enable it and get automatic fixes in future runs.

To disable these notifications, a workspace admin can disable them in workspace settings.


View your CI Pipeline Execution ↗ for commit 1338e8e

Command Status Duration Result
nx affected --targets=test:sherif,test:knip,tes... ❌ Failed 1m 15s View ↗
nx run-many --target=build --exclude=examples/*... ❌ Failed 5s View ↗

☁️ Nx Cloud last updated this comment at 2025-11-05 14:08:59 UTC

@pkg-pr-new
Copy link

pkg-pr-new bot commented Nov 1, 2025

More templates

@tanstack/angular-query-experimental

npm i https://pkg.pr.new/@tanstack/angular-query-experimental@9835

@tanstack/eslint-plugin-query

npm i https://pkg.pr.new/@tanstack/eslint-plugin-query@9835

@tanstack/query-async-storage-persister

npm i https://pkg.pr.new/@tanstack/query-async-storage-persister@9835

@tanstack/query-broadcast-client-experimental

npm i https://pkg.pr.new/@tanstack/query-broadcast-client-experimental@9835

@tanstack/query-core

npm i https://pkg.pr.new/@tanstack/query-core@9835

@tanstack/query-devtools

npm i https://pkg.pr.new/@tanstack/query-devtools@9835

@tanstack/query-persist-client-core

npm i https://pkg.pr.new/@tanstack/query-persist-client-core@9835

@tanstack/query-sync-storage-persister

npm i https://pkg.pr.new/@tanstack/query-sync-storage-persister@9835

@tanstack/react-query

npm i https://pkg.pr.new/@tanstack/react-query@9835

@tanstack/react-query-devtools

npm i https://pkg.pr.new/@tanstack/react-query-devtools@9835

@tanstack/react-query-next-experimental

npm i https://pkg.pr.new/@tanstack/react-query-next-experimental@9835

@tanstack/react-query-persist-client

npm i https://pkg.pr.new/@tanstack/react-query-persist-client@9835

@tanstack/solid-query

npm i https://pkg.pr.new/@tanstack/solid-query@9835

@tanstack/solid-query-devtools

npm i https://pkg.pr.new/@tanstack/solid-query-devtools@9835

@tanstack/solid-query-persist-client

npm i https://pkg.pr.new/@tanstack/solid-query-persist-client@9835

@tanstack/svelte-query

npm i https://pkg.pr.new/@tanstack/svelte-query@9835

@tanstack/svelte-query-devtools

npm i https://pkg.pr.new/@tanstack/svelte-query-devtools@9835

@tanstack/svelte-query-persist-client

npm i https://pkg.pr.new/@tanstack/svelte-query-persist-client@9835

@tanstack/vue-query

npm i https://pkg.pr.new/@tanstack/vue-query@9835

@tanstack/vue-query-devtools

npm i https://pkg.pr.new/@tanstack/vue-query-devtools@9835

commit: a24433b

@TkDodo
Copy link
Collaborator

TkDodo commented Nov 1, 2025

renames fetchQuery and fetchInfiniteQuery to query and infiniteQuery

sorry the idea was not to rename those, but to add new methods and deprecate the old ones. Otherwise, this would be a breaking change.

@codecov
Copy link

codecov bot commented Nov 1, 2025

Codecov Report

❌ Patch coverage is 69.23077% with 4 lines in your changes missing coverage. Please review.
✅ Project coverage is 59.74%. Comparing base (411f030) to head (16bed21).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@             Coverage Diff             @@
##             main    #9835       +/-   ##
===========================================
+ Coverage   45.75%   59.74%   +13.99%     
===========================================
  Files         200      129       -71     
  Lines        8408     5627     -2781     
  Branches     1929     1536      -393     
===========================================
- Hits         3847     3362      -485     
+ Misses       4113     1960     -2153     
+ Partials      448      305      -143     
Components Coverage Δ
@tanstack/angular-query-experimental 93.85% <ø> (ø)
@tanstack/eslint-plugin-query ∅ <ø> (∅)
@tanstack/query-async-storage-persister 43.85% <ø> (ø)
@tanstack/query-broadcast-client-experimental 24.39% <ø> (ø)
@tanstack/query-codemods ∅ <ø> (∅)
@tanstack/query-core 97.38% <100.00%> (+<0.01%) ⬆️
@tanstack/query-devtools 3.48% <ø> (ø)
@tanstack/query-persist-client-core 80.00% <ø> (ø)
@tanstack/query-sync-storage-persister 84.61% <ø> (ø)
@tanstack/query-test-utils ∅ <ø> (∅)
@tanstack/react-query 96.01% <ø> (ø)
@tanstack/react-query-devtools 10.00% <ø> (ø)
@tanstack/react-query-next-experimental ∅ <ø> (∅)
@tanstack/react-query-persist-client 100.00% <ø> (ø)
@tanstack/solid-query 77.81% <ø> (ø)
@tanstack/solid-query-devtools 61.90% <ø> (ø)
@tanstack/solid-query-persist-client 100.00% <ø> (ø)
@tanstack/svelte-query ∅ <ø> (∅)
@tanstack/svelte-query-devtools ∅ <ø> (∅)
@tanstack/svelte-query-persist-client ∅ <ø> (∅)
@tanstack/vue-query 70.51% <0.00%> (-0.59%) ⬇️
@tanstack/vue-query-devtools ∅ <ø> (∅)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@DogPawHat DogPawHat force-pushed the implement-simplified-imperitive-methods branch from b3a20d4 to 46d274c Compare November 1, 2025 20:53
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 3

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 411f030 and 46d274c.

📒 Files selected for processing (5)
  • .changeset/wise-suns-ask.md (1 hunks)
  • packages/query-core/src/__tests__/queryClient.test-d.tsx (2 hunks)
  • packages/query-core/src/__tests__/queryClient.test.tsx (9 hunks)
  • packages/query-core/src/queryClient.ts (6 hunks)
  • packages/vue-query/src/queryClient.ts (1 hunks)
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-08-19T03:18:18.303Z
Learnt from: oscartbeaumont
Repo: TanStack/query PR: 9564
File: packages/solid-query-devtools/src/production.tsx:2-3
Timestamp: 2025-08-19T03:18:18.303Z
Learning: In the solid-query-devtools package, the codebase uses a pattern of type-only default imports combined with typeof for component type annotations (e.g., `import type SolidQueryDevtoolsComp from './devtools'` followed by `typeof SolidQueryDevtoolsComp`). This pattern is consistently used across index.tsx and production.tsx files, and the maintainers prefer consistency over changing this approach.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
📚 Learning: 2025-09-02T17:57:33.184Z
Learnt from: TkDodo
Repo: TanStack/query PR: 9612
File: packages/query-async-storage-persister/src/asyncThrottle.ts:0-0
Timestamp: 2025-09-02T17:57:33.184Z
Learning: When importing from tanstack/query-core in other TanStack Query packages like query-async-storage-persister, a workspace dependency "tanstack/query-core": "workspace:*" needs to be added to the package.json.

Applied to files:

  • .changeset/wise-suns-ask.md
🧬 Code graph analysis (4)
packages/query-core/src/__tests__/queryClient.test-d.tsx (3)
packages/query-core/src/types.ts (1)
  • InfiniteData (204-207)
packages/query-core/src/queryClient.ts (1)
  • infiniteQuery (395-417)
packages/vue-query/src/queryClient.ts (1)
  • infiniteQuery (328-346)
packages/query-core/src/__tests__/queryClient.test.tsx (2)
packages/query-core/src/utils.ts (2)
  • noop (82-82)
  • sleep (363-367)
packages/query-core/src/types.ts (1)
  • QueryFunction (96-100)
packages/vue-query/src/queryClient.ts (3)
packages/query-core/src/types.ts (5)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • FetchQueryOptions (491-507)
  • FetchInfiniteQueryOptions (548-565)
  • InfiniteData (204-207)
packages/vue-query/src/types.ts (1)
  • MaybeRefDeep (29-37)
packages/vue-query/src/utils.ts (1)
  • cloneDeepUnref (70-97)
packages/query-core/src/queryClient.ts (2)
packages/query-core/src/utils.ts (1)
  • noop (82-82)
packages/query-core/src/types.ts (5)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • FetchQueryOptions (491-507)
  • FetchInfiniteQueryOptions (548-565)
  • InfiniteData (204-207)
🪛 LanguageTool
.changeset/wise-suns-ask.md

[grammar] ~6-~6: Ensure spelling is correct
Context: ...tanstack/vue-query': minor --- renamed imperitive methods

(QB_NEW_EN_ORTHOGRAPHY_ERROR_IDS_1)

🔇 Additional comments (8)
packages/query-core/src/queryClient.ts (5)

140-159: LGTM! ensureQueryData correctly delegates to the new query method.

The internal delegation to query with staleTime: 'static' maintains the expected behavior while utilizing the new method.


336-365: Verify alignment with maintainer expectations regarding API migration strategy.

Per TkDodo's comment, the original intent was to "add new methods and deprecate the old ones to avoid a breaking change, not to remove/rename them outright." While this implementation maintains backward compatibility by keeping fetchQuery as a wrapper, please confirm that making query the primary implementation (rather than keeping fetchQuery as primary and adding query as an alias) aligns with the team's migration strategy.


384-393: LGTM! prefetchQuery correctly delegates to the new query method.

The delegation pattern with .then(noop).catch(noop) properly maintains the fire-and-forget prefetch behavior.


395-417: LGTM! infiniteQuery implementation is clean and consistent.

The method correctly sets the infiniteQueryBehavior and delegates to the query method. The type assertion on line 416 is necessary due to the behavior transformation.


436-452: LGTM! prefetchInfiniteQuery correctly delegates to the new infiniteQuery method.

The delegation pattern maintains the fire-and-forget prefetch behavior.

packages/query-core/src/__tests__/queryClient.test-d.tsx (1)

313-328: LGTM! Type assertions for new methods are comprehensive and correct.

The type checks for query and infiniteQuery methods properly cover both fully typed and untyped scenarios, maintaining consistency with the existing test structure.

Also applies to: 462-477

packages/query-core/src/__tests__/queryClient.test.tsx (1)

11-11: LGTM! Comprehensive test coverage for the new query methods.

The test additions are excellent:

  • Properly imports noop utility for prefetch patterns
  • Marks old test suites with @deprecated comments for clarity
  • Provides thorough coverage of new query and infiniteQuery methods including:
    • Static staleTime behavior
    • Prefetching scenarios
    • Type safety validation
    • Edge cases (cache hits, invalidation, GC, etc.)
  • Maintains parallel structure with legacy tests while validating new functionality

Also applies to: 453-453, 529-620, 622-622, 683-720, 753-753, 928-1100, 1102-1102, 1147-1189, 1191-1191, 1281-1374, 1376-1376, 1426-1477

packages/vue-query/src/queryClient.ts (1)

256-346: LGTM! Vue Query extensions for new methods are well-implemented.

The query and infiniteQuery methods properly:

  • Provide overloads for both plain and MaybeRefDeep options
  • Use cloneDeepUnref to handle Vue's reactive refs correctly
  • Delegate to the parent QueryClient implementation
  • Follow the established pattern used by other methods in this class

@DogPawHat
Copy link
Contributor Author

DogPawHat commented Nov 1, 2025

From #9135:

Per default, this should behave like queryClient.fetchQuery does today:

  • it respects staleTime (like any good query should)
  • it returns a Promise you can await.

fetchQuery is still there, it's just a straight passthough for query now

@DogPawHat DogPawHat force-pushed the implement-simplified-imperitive-methods branch from c18dfc0 to 7670b40 Compare November 2, 2025 13:08
initialPageParam: 1,
})

const data = await new QueryClient().infiniteQuery(options)
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Known type failures here.

as far as I know a select pass into a useInfiniteQuery can transform the data: InfiniteData into whatever (e.g. an Array<>) and that will end up being the data returned from the infinite query*. infiniteQuery should do the same I think, but we've got a big type mismatch here at the moment.

*I suspect this is not the best idea

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Type errors from my local VSCode:

Types of property 'select' are incompatible.
        Type '((data: InfiniteData<string, number>) => string[]) | undefined' is not assignable to type '((data: InfiniteData<string, number>) => string) | undefined'.
          Type '(data: InfiniteData<string, number>) => string[]' is not assignable to type '(data: InfiniteData<string, number>) => string'.
            Type 'string[]' is not assignable to type 'string'.ts(2345)

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since it works for useInfiniteQuery, it should also work for client.infiniteQuery()

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 16bed21 and fb9dcdc.

📒 Files selected for processing (8)
  • .changeset/famous-owls-battle.md (1 hunks)
  • packages/query-core/src/__tests__/queryClient.test-d.tsx (7 hunks)
  • packages/query-core/src/__tests__/queryClient.test.tsx (9 hunks)
  • packages/query-core/src/queryClient.ts (8 hunks)
  • packages/query-core/src/types.ts (3 hunks)
  • packages/react-query/src/__tests__/infiniteQueryOptions.test-d.tsx (3 hunks)
  • packages/react-query/src/__tests__/queryOptions.test-d.tsx (2 hunks)
  • packages/vue-query/src/queryClient.ts (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (2)
  • packages/react-query/src/tests/queryOptions.test-d.tsx
  • packages/react-query/src/tests/infiniteQueryOptions.test-d.tsx
🧰 Additional context used
🧠 Learnings (2)
📚 Learning: 2025-08-19T03:18:18.303Z
Learnt from: oscartbeaumont
Repo: TanStack/query PR: 9564
File: packages/solid-query-devtools/src/production.tsx:2-3
Timestamp: 2025-08-19T03:18:18.303Z
Learning: In the solid-query-devtools package, the codebase uses a pattern of type-only default imports combined with typeof for component type annotations (e.g., `import type SolidQueryDevtoolsComp from './devtools'` followed by `typeof SolidQueryDevtoolsComp`). This pattern is consistently used across index.tsx and production.tsx files, and the maintainers prefer consistency over changing this approach.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
📚 Learning: 2025-09-02T17:57:33.184Z
Learnt from: TkDodo
Repo: TanStack/query PR: 9612
File: packages/query-async-storage-persister/src/asyncThrottle.ts:0-0
Timestamp: 2025-09-02T17:57:33.184Z
Learning: When importing from tanstack/query-core in other TanStack Query packages like query-async-storage-persister, a workspace dependency "tanstack/query-core": "workspace:*" needs to be added to the package.json.

Applied to files:

  • .changeset/famous-owls-battle.md
🧬 Code graph analysis (4)
packages/query-core/src/__tests__/queryClient.test-d.tsx (2)
packages/query-core/src/queryClient.ts (1)
  • infiniteQuery (409-431)
packages/query-core/src/types.ts (2)
  • InfiniteData (204-207)
  • InfiniteQueryExecuteOptions (568-586)
packages/query-core/src/queryClient.ts (4)
packages/query-core/src/utils.ts (2)
  • noop (82-82)
  • resolveStaleTime (101-113)
packages/query-core/src/types.ts (7)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • QueryExecuteOptions (491-509)
  • FetchQueryOptions (511-527)
  • InfiniteQueryExecuteOptions (568-586)
  • FetchInfiniteQueryOptions (588-605)
  • InfiniteData (204-207)
packages/query-core/src/query.ts (1)
  • isStale (296-306)
packages/vue-query/src/queryClient.ts (1)
  • query (294-314)
packages/query-core/src/__tests__/queryClient.test.tsx (2)
packages/query-core/src/utils.ts (2)
  • noop (82-82)
  • sleep (363-367)
packages/query-core/src/types.ts (1)
  • QueryFunction (96-100)
packages/vue-query/src/queryClient.ts (3)
packages/query-core/src/types.ts (5)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • QueryExecuteOptions (491-509)
  • InfiniteQueryExecuteOptions (568-586)
  • InfiniteData (204-207)
packages/vue-query/src/types.ts (1)
  • MaybeRefDeep (29-37)
packages/vue-query/src/utils.ts (1)
  • cloneDeepUnref (70-97)
🪛 Biome (2.1.2)
packages/query-core/src/__tests__/queryClient.test-d.tsx

[error] 342-342: Const declarations must have an initialized value.

This variable needs to be initialized.

(parse)


[error] 342-342: Shouldn't redeclare 'infiniteQueryOptions'. Consider to delete it or rename it.

'infiniteQueryOptions' is defined here:

(lint/suspicious/noRedeclare)


[error] 441-441: This variable is used before its declaration.

The variable is declared here:

(lint/correctness/noInvalidUseBeforeDeclaration)


[error] 443-443: Shouldn't redeclare 'infiniteQuery'. Consider to delete it or rename it.

'infiniteQuery' is defined here:

(lint/suspicious/noRedeclare)

⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Test
🔇 Additional comments (7)
packages/query-core/src/__tests__/queryClient.test-d.tsx (7)

161-172: LGTM!

The test correctly verifies that fetchQuery does not accept the select option, maintaining backward compatibility as intended in the PR design.


174-227: LGTM!

The tests correctly verify:

  • select option is not allowed on fetchInfiniteQuery (backward compatibility)
  • pages parameter is properly typed
  • getNextPageParam is required when pages is specified

229-239: LGTM!

The test correctly verifies that the new query method accepts the select option, which is the key differentiator from the fetchQuery compatibility wrapper.


242-257: Verify whether select should be allowed on infiniteQuery.

This test asserts that select is not allowed on infiniteQuery, but:

  1. Lines 336-339 show InfiniteQueryExecuteOptions being used with a select option successfully
  2. Unlike the fetchInfiniteQuery test (line 183), there's no @ts-expect-error annotation on the select property (line 249)

Based on the implementation where infiniteQuery delegates to query (which supports select), it appears select should be allowed. Please clarify the intended behavior and add the @ts-expect-error annotation if select is truly not supported, or update the test description if it is supported.


428-429: LGTM!

The type check correctly verifies that query returns the expected TData type.


578-579: LGTM!

The type check correctly verifies that query returns unknown when called with untyped options.


583-593: LGTM!

The type checks correctly verify the return types for fetchInfiniteQuery and infiniteQuery with untyped options, both returning InfiniteData<unknown, unknown>.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fb9dcdc and 3b33d44.

📒 Files selected for processing (2)
  • .changeset/famous-owls-battle.md (1 hunks)
  • packages/query-core/src/__tests__/queryClient.test-d.tsx (7 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • .changeset/famous-owls-battle.md
🧰 Additional context used
🧠 Learnings (1)
📚 Learning: 2025-08-19T03:18:18.303Z
Learnt from: oscartbeaumont
Repo: TanStack/query PR: 9564
File: packages/solid-query-devtools/src/production.tsx:2-3
Timestamp: 2025-08-19T03:18:18.303Z
Learning: In the solid-query-devtools package, the codebase uses a pattern of type-only default imports combined with typeof for component type annotations (e.g., `import type SolidQueryDevtoolsComp from './devtools'` followed by `typeof SolidQueryDevtoolsComp`). This pattern is consistently used across index.tsx and production.tsx files, and the maintainers prefer consistency over changing this approach.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
🧬 Code graph analysis (1)
packages/query-core/src/__tests__/queryClient.test-d.tsx (3)
packages/query-core/src/queryClient.ts (2)
  • QueryClient (63-692)
  • infiniteQuery (409-431)
packages/vue-query/src/queryClient.ts (2)
  • QueryClient (39-589)
  • infiniteQuery (348-366)
packages/query-core/src/types.ts (2)
  • InfiniteData (204-207)
  • InfiniteQueryExecuteOptions (568-586)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Preview
  • GitHub Check: Test

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 3b33d44 and a24433b.

📒 Files selected for processing (1)
  • packages/query-core/src/__tests__/queryClient.test-d.tsx (7 hunks)
🧰 Additional context used
🧠 Learnings (3)
📓 Common learnings
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.049Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.
📚 Learning: 2025-11-02T22:52:33.049Z
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.049Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
📚 Learning: 2025-08-19T03:18:18.303Z
Learnt from: oscartbeaumont
Repo: TanStack/query PR: 9564
File: packages/solid-query-devtools/src/production.tsx:2-3
Timestamp: 2025-08-19T03:18:18.303Z
Learning: In the solid-query-devtools package, the codebase uses a pattern of type-only default imports combined with typeof for component type annotations (e.g., `import type SolidQueryDevtoolsComp from './devtools'` followed by `typeof SolidQueryDevtoolsComp`). This pattern is consistently used across index.tsx and production.tsx files, and the maintainers prefer consistency over changing this approach.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
🧬 Code graph analysis (1)
packages/query-core/src/__tests__/queryClient.test-d.tsx (2)
packages/query-core/src/queryClient.ts (1)
  • infiniteQuery (409-431)
packages/query-core/src/types.ts (2)
  • InfiniteData (204-207)
  • InfiniteQueryExecuteOptions (568-586)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Test
  • GitHub Check: Preview
🔇 Additional comments (5)
packages/query-core/src/__tests__/queryClient.test-d.tsx (5)

13-13: LGTM!

The addition of InfiniteQueryExecuteOptions to the imports aligns with the new public API surface introduced in this PR.


161-172: LGTM!

This test correctly validates that the legacy fetchQuery method does not support the select option, with proper use of @ts-expect-error to enforce the type constraint.


174-227: LGTM!

The tests for fetchInfiniteQuery correctly validate the legacy behavior, including:

  • Properly rejecting select option with @ts-expect-error
  • Validating the pages option with correct type expectations
  • Enforcing required parameter constraints

229-239: LGTM!

This test correctly validates that the new query method supports the select option for data transformation, properly demonstrating the enhanced functionality compared to the legacy fetchQuery.


328-336: LGTM!

The integration of the new query and infiniteQuery methods into the fully-typed and untyped test sections is correct:

  • Proper usage of InfiniteQueryExecuteOptions<TData, TError> type
  • Correct type expectations for return values
  • Good coverage of both typed and untyped variants

Also applies to: 422-423, 434-435, 569-570, 581-584

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
packages/query-core/src/__tests__/queryClient.test-d.tsx (1)

205-214: Fix misleading test title.

The test uses assertType without @ts-expect-error, meaning it's verifying that passing getNextPageParam without pages is allowed (per the InfiniteQueryPages union's { pages?: never } branch). The title incorrectly says "should not allow".

Apply this diff:

-  it('should not allow passing getNextPageParam without pages', () => {
+  it('should allow passing getNextPageParam without pages', () => {
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between a24433b and fa6f86f.

📒 Files selected for processing (2)
  • packages/query-core/src/__tests__/queryClient.test-d.tsx (7 hunks)
  • packages/query-core/src/types.ts (3 hunks)
🧰 Additional context used
🧠 Learnings (3)
📓 Common learnings
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.049Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.
📚 Learning: 2025-11-02T22:52:33.049Z
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.049Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
  • packages/query-core/src/types.ts
📚 Learning: 2025-08-19T03:18:18.303Z
Learnt from: oscartbeaumont
Repo: TanStack/query PR: 9564
File: packages/solid-query-devtools/src/production.tsx:2-3
Timestamp: 2025-08-19T03:18:18.303Z
Learning: In the solid-query-devtools package, the codebase uses a pattern of type-only default imports combined with typeof for component type annotations (e.g., `import type SolidQueryDevtoolsComp from './devtools'` followed by `typeof SolidQueryDevtoolsComp`). This pattern is consistently used across index.tsx and production.tsx files, and the maintainers prefer consistency over changing this approach.

Applied to files:

  • packages/query-core/src/__tests__/queryClient.test-d.tsx
  • packages/query-core/src/types.ts
🧬 Code graph analysis (1)
packages/query-core/src/__tests__/queryClient.test-d.tsx (2)
packages/query-core/src/queryClient.ts (1)
  • infiniteQuery (409-431)
packages/query-core/src/types.ts (2)
  • InfiniteData (204-207)
  • InfiniteQueryExecuteOptions (568-586)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (2)
  • GitHub Check: Test
  • GitHub Check: Preview
🔇 Additional comments (7)
packages/query-core/src/types.ts (3)

491-509: LGTM: QueryExecuteOptions introduces select support correctly.

The new QueryExecuteOptions interface properly introduces the select transformation flow via the TQueryData generic. The data flows as TQueryFnData (raw) → TQueryData (intermediate) → TData (final via select). The staleTime correctly uses TQueryData since staleness should be determined from the query's stored data, not the transformed result.


511-528: LGTM: FetchQueryOptions maintains backward compatibility.

The refactor to make FetchQueryOptions an alias that omits select from QueryExecuteOptions is correct. Passing TData as both the 3rd and 4th generics (TData, TData) ensures no transformation layer exists when select is omitted, maintaining the original behavior of fetchQuery.


568-586: LGTM: InfiniteQueryExecuteOptions properly extends execute options.

The type correctly:

  • Omits initialPageParam from QueryExecuteOptions (which has initialPageParam?: never)
  • Re-adds it via InitialPageParam<TPageParam> with the proper type
  • Uses InfiniteData<TQueryFnData, TPageParam> as the intermediate data shape
  • Includes InfiniteQueryPages discriminated union to enforce the pages/getNextPageParam constraint
packages/query-core/src/__tests__/queryClient.test-d.tsx (4)

161-172: LGTM: Correctly verifies fetchQuery rejects select.

The test properly uses @ts-expect-error to confirm that the legacy fetchQuery method does not support the select option, maintaining backward compatibility.

Based on learnings.


229-239: LGTM: Correctly verifies query accepts select.

The test confirms that the new query method supports the select option for data transformation, using assertType (without @ts-expect-error) to validate this is allowed.

Based on learnings.


241-257: LGTM: Correctly verifies infiniteQuery accepts select.

The test confirms that the new infiniteQuery method supports the select option for transforming infinite query data, using assertType (without @ts-expect-error) to validate this is allowed.

Based on learnings.


328-336: LGTM: infiniteQueryOptions properly typed.

The variable correctly uses InfiniteQueryExecuteOptions<TData, TError> with defaults for remaining generics. The getNextPageParam callback properly receives lastPage typed as TData.

Comment on lines +271 to +280
it('should not allow passing getNextPageParam without pages', () => {
assertType<Parameters<QueryClient['infiniteQuery']>>([
{
queryKey: ['key'],
queryFn: () => Promise.resolve({ count: 1 }),
initialPageParam: 1,
getNextPageParam: () => 1,
},
])
})
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Fix misleading test title.

The test uses assertType without @ts-expect-error, meaning it's verifying that passing getNextPageParam without pages is allowed. The title incorrectly says "should not allow".

Apply this diff:

-  it('should not allow passing getNextPageParam without pages', () => {
+  it('should allow passing getNextPageParam without pages', () => {
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
it('should not allow passing getNextPageParam without pages', () => {
assertType<Parameters<QueryClient['infiniteQuery']>>([
{
queryKey: ['key'],
queryFn: () => Promise.resolve({ count: 1 }),
initialPageParam: 1,
getNextPageParam: () => 1,
},
])
})
it('should allow passing getNextPageParam without pages', () => {
assertType<Parameters<QueryClient['infiniteQuery']>>([
{
queryKey: ['key'],
queryFn: () => Promise.resolve({ count: 1 }),
initialPageParam: 1,
getNextPageParam: () => 1,
},
])
})
🤖 Prompt for AI Agents
In packages/query-core/src/__tests__/queryClient.test-d.tsx around lines 271 to
280, the test title is misleading — it claims "should not allow passing
getNextPageParam without pages" while the body uses assertType (no
@ts-expect-error) which verifies the opposite. Rename the test title to
accurately describe the behavior (for example "should allow passing
getNextPageParam without pages") so the description matches the assertion.

Comment on lines 150 to 154
const cachedData = query.state.data

if (cachedData === undefined) {
return this.fetchQuery(options)
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get why this was removed (because staleTime: 'static' achieves the same thing), however, background refetching with revalidateIfStale was never triggered if we had no data in the cache, and right now, it’s the first thing that happens.

I guess it’s mostly fine because query.fetch will dedupe promises, but there is the edge-case where users pass cancelRefetch which would lead to to the first fetch being cancelled.

Not sure what a good way out here would be, except maybe not re-implement ensureQueryData with this.query rather than keep the current implementation ?

also since query now supports select, these functions also do transformation in case you’ve passed excess properties!

I think what we should do is leave ensureQueryData, fetchQuery and prefetchQuery alone for now and NOT have them call .query or .infiniteQuery under the hood.

Comment on lines 374 to 376
if (select) {
return basePromise.then((data) => select(data))
}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we could just await the basePromise ?

return basePromise.then((data) => select(data))
}

return basePromise.then((data) => data as unknown as TData)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure why this is necessary :/

initialPageParam: 1,
})

const data = await new QueryClient().infiniteQuery(options)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

since it works for useInfiniteQuery, it should also work for client.infiniteQuery()

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (1)
packages/query-core/src/queryClient.ts (1)

428-450: Implementation delegates correctly, but consider type-safe alternatives to the cast.

The method properly sets infiniteQueryBehavior before delegating to query. The as any cast on line 449 bypasses type safety—consider whether tighter generic constraints or a helper could eliminate it.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between fa6f86f and 6a3c2ed.

📒 Files selected for processing (2)
  • packages/query-core/src/queryClient.ts (5 hunks)
  • packages/query-core/src/types.ts (3 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.071Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.
📚 Learning: 2025-11-02T22:52:33.071Z
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.071Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.

Applied to files:

  • packages/query-core/src/types.ts
  • packages/query-core/src/queryClient.ts
🧬 Code graph analysis (1)
packages/query-core/src/queryClient.ts (3)
packages/query-core/src/types.ts (6)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • QueryExecuteOptions (491-509)
  • InfiniteQueryExecuteOptions (568-586)
  • FetchInfiniteQueryOptions (588-605)
  • InfiniteData (204-207)
packages/vue-query/src/queryClient.ts (1)
  • query (294-314)
packages/query-core/src/utils.ts (1)
  • resolveStaleTime (101-113)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: Test
🔇 Additional comments (4)
packages/query-core/src/types.ts (2)

491-509: LGTM! Well-designed interface for query execution options.

The interface correctly separates TQueryData from TData to enable optional select transformation, explicitly prevents initialPageParam for single queries, and provides clear documentation for staleTime behavior.


561-586: LGTM! Clean type composition for infinite query execution.

The discriminated union for InfiniteQueryPages and the composition strategy for InfiniteQueryExecuteOptions (omitting the never field then adding the required version) correctly enforces that infinite queries must provide initialPageParam.

packages/query-core/src/queryClient.ts (2)

343-384: LGTM! Core query execution logic is sound.

The method correctly handles stale-time checking, optional data fetching, and select transformation. The double cast as unknown as TData on line 383 is a TypeScript workaround when no select is provided (TData defaults to TQueryData), though it's safe in practice.


452-468: Fix: Missing options.behavior setup before delegation to fetchQuery.

The fetchInfiniteQuery method must set options.behavior before delegating to fetchQuery, matching the pattern used in infiniteQuery (lines 443-448) and ensureInfiniteQueryData (lines 503-508). Without this, infinite query pagination will not work correctly.

 fetchInfiniteQuery<
   TQueryFnData,
   TError = DefaultError,
   TData = TQueryFnData,
   TQueryKey extends QueryKey = QueryKey,
   TPageParam = unknown,
 >(
   options: FetchInfiniteQueryOptions<
     TQueryFnData,
     TError,
     TData,
     TQueryKey,
     TPageParam
   >,
 ): Promise<InfiniteData<TData, TPageParam>> {
+  options.behavior = infiniteQueryBehavior<
+    TQueryFnData,
+    TError,
+    TData,
+    TPageParam
+  >(options.pages)
   return this.fetchQuery(options as any)
 }
⛔ Skipped due to learnings
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.071Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
packages/query-core/src/queryClient.ts (1)

428-450: Fix the type error and avoid as any assertion.

Two issues need to be addressed:

  1. Pipeline failure (Line 443): The type error indicates that QueryBehavior<TQueryFnData, TError, InfiniteData<TQueryFnData, TPageParam>, readonly unknown[]> is not assignable to QueryBehavior<TQueryFnData, TError, InfiniteData<TQueryFnData, TPageParam>, TQueryKey>. This suggests a mismatch in the query key type constraint.

  2. Line 449: The as any type assertion bypasses type safety and hides potential type errors. This indicates that the types don't align properly between InfiniteQueryExecuteOptions and QueryExecuteOptions.

The type system should properly model the relationship between these option types without requiring unsafe casts. Please investigate:

  • Whether the QueryExecuteOptions type needs to be adjusted to properly accept infinite query options
  • Whether the generic constraints need to be refined to make the types compatible
  • Alternative approaches that maintain type safety
#!/bin/bash
# Check how behavior property is typed and used
ast-grep --pattern $'behavior: QueryBehavior<$$$>'
📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 6a3c2ed and 1338e8e.

📒 Files selected for processing (1)
  • packages/query-core/src/queryClient.ts (5 hunks)
🧰 Additional context used
🧠 Learnings (2)
📓 Common learnings
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.071Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.
📚 Learning: 2025-11-02T22:52:33.071Z
Learnt from: DogPawHat
Repo: TanStack/query PR: 9835
File: packages/query-core/src/__tests__/queryClient.test-d.tsx:242-256
Timestamp: 2025-11-02T22:52:33.071Z
Learning: In the TanStack Query codebase, the new `query` and `infiniteQuery` methods support the `select` option for data transformation, while the legacy `fetchQuery` and `fetchInfiniteQuery` methods do not support `select` and should reject it at the type level.

Applied to files:

  • packages/query-core/src/queryClient.ts
🧬 Code graph analysis (1)
packages/query-core/src/queryClient.ts (3)
packages/query-core/src/types.ts (6)
  • DefaultError (47-51)
  • QueryKey (53-61)
  • QueryExecuteOptions (491-509)
  • InfiniteQueryExecuteOptions (568-586)
  • FetchInfiniteQueryOptions (588-605)
  • InfiniteData (204-207)
packages/vue-query/src/queryClient.ts (1)
  • query (294-314)
packages/query-core/src/utils.ts (1)
  • resolveStaleTime (101-113)
🪛 GitHub Actions: PR
packages/query-core/src/queryClient.ts

[error] 443-443: Type 'QueryBehavior<TQueryFnData, TError, InfiniteData<TQueryFnData, TPageParam>, readonly unknown[]>' is not assignable to type 'QueryBehavior<TQueryFnData, TError, InfiniteData<TQueryFnData, TPageParam>, TQueryKey>'.

🔇 Additional comments (2)
packages/query-core/src/queryClient.ts (2)

28-28: LGTM!

The new type imports support the query and infiniteQuery method signatures correctly.

Also applies to: 37-37


373-383: Verify data handling assumptions in the query method implementation.

The technical concerns in the review are valid: when isStale is false, query.state.data could be undefined (initialized without initialData), and this would be passed to the select function without a guard. The type signature select?: (data: TQueryData) => TData expects defined data, but the cast on line 375 (as TQueryData) doesn't guarantee it at runtime.

However, test cases across the codebase show select always receives properly typed, defined data—no scenario in tests passes undefined to the selector. This suggests either:

  1. The scenario is prevented by caller contracts (e.g., always providing initialData or ensuring fetch completes first)
  2. The stale-time logic prevents isStale=false when data is undefined
  3. This is an edge case not covered by tests

Confirm whether adding a guard (e.g., if (!queryData) return queryData as TData) is necessary, or if the current design intentionally relies on caller responsibility to provide valid initial state.

Comment on lines +452 to 468
fetchInfiniteQuery<
TQueryFnData,
TError = DefaultError,
TData = TQueryFnData,
TQueryKey extends QueryKey = QueryKey,
TPageParam = unknown,
>(
options: FetchInfiniteQueryOptions<
TQueryFnData,
TError,
TData,
TQueryKey,
TPageParam
>,
): Promise<InfiniteData<TData, TPageParam>> {
return this.fetchQuery(options as any)
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion | 🟠 Major

Avoid as any type assertion.

Line 467 uses as any when delegating to fetchQuery, which bypasses type safety. While this maintains the existing delegation pattern (based on past review comments indicating fetchInfiniteQuery should call fetchQuery), the type assertion suggests that FetchInfiniteQueryOptions and FetchQueryOptions aren't properly aligned.

Consider:

  • Ensuring FetchInfiniteQueryOptions properly extends or is compatible with FetchQueryOptions so no cast is needed
  • Adding an internal helper that both methods can safely delegate to without type assertions
  • If the cast is unavoidable due to the type structure, document why it's safe with a comment
#!/bin/bash
# Check the relationship between FetchInfiniteQueryOptions and FetchQueryOptions
ast-grep --pattern $'export type FetchInfiniteQueryOptions<$$$> = $$$'
🤖 Prompt for AI Agents
In packages/query-core/src/queryClient.ts around lines 452 to 468, the
fetchInfiniteQuery implementation uses "as any" to call fetchQuery which
bypasses type safety; fix by ensuring FetchInfiniteQueryOptions is compatible
with FetchQueryOptions (update its declaration to extend or intersect the
FetchQueryOptions generic shape), or extract a private internal typed helper
that both fetchQuery and fetchInfiniteQuery call (with appropriate generic
bounds) so no cast is needed; if a cast is truly unavoidable due to type
constraints, replace "as any" with a narrower, justified cast and add a brief
comment explaining why the cast is safe.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants