useQuery<TData, TError> function

QuerySnapshot<TData, TError> useQuery<TData, TError>(
  1. List<Object?> queryKey,
  2. QueryFn<TData> queryFn, {
  3. bool? enabled,
  4. NetworkMode? networkMode,
  5. StaleDuration? staleDuration,
  6. GcDuration? gcDuration,
  7. Placeholder<TData>? placeholder,
  8. RefetchOnMount? refetchOnMount,
  9. RefetchOnResume? refetchOnResume,
  10. RefetchOnReconnect? refetchOnReconnect,
  11. Duration? refetchInterval,
  12. RetryResolver<TError>? retry,
  13. bool? retryOnMount,
  14. Seed<TData>? seed,
  15. SeedUpdatedAt? seedUpdatedAt,
  16. Map<String, dynamic>? meta,
  17. ShouldRebuild<QuerySnapshot<TData, TError>>? shouldRebuild,
  18. QueryClient? client,
})

A hook for fetching, caching, and subscribing to async data.

This hook manages the complete lifecycle of async data fetching, including request deduplication, caching, background refetching, and stale-while- revalidate patterns.

The queryKey uniquely identifies this query in the cache. Queries with the same key share cached data across the widget tree.

The queryFn fetches the data when the query needs to execute. It receives a QueryFunctionContext with the query key and other metadata.

Returns a QuerySnapshot containing the current state of the query: a sealed type supporting exhaustive pattern matching over QueryPending / QuerySuccess / QueryError. The widget rebuilds automatically when the query state changes.

Options

  • enabled: Whether the query should execute. Defaults to true. Set to false to disable automatic fetching.

  • networkMode: The network connectivity mode for this query. Has no effect unless connectivityChanges is provided to QueryClient. Can be NetworkMode.online (default, pauses when offline), NetworkMode.always (ignores network state), or NetworkMode.offlineFirst (first fetch runs immediately, retries pause when offline).

  • staleDuration: How long data remains fresh before becoming stale. Stale data may be refetched on the next access. Defaults to zero (data is immediately stale).

  • gcDuration: How long unused data remains in cache before garbage collection. Defaults to 5 minutes.

  • placeholder: Data to display while the query is pending and has no cached data. Unlike seed, placeholder data is not persisted to the cache. Provide the data directly with Placeholder.value, or lazily with Placeholder.lazy — the callback receives the data of the last query this hook had data for (e.g. before the query key changed) and may return null to show no placeholder. Use Placeholder.keepPrevious to keep showing the previous query's data while a new query key loads.

  • refetchOnMount: Controls refetch behavior when this hook mounts. Can be RefetchOnMount.stale (default), RefetchOnMount.always, or RefetchOnMount.never.

  • refetchOnResume: Controls refetch behavior when the app resumes from background. Can be RefetchOnResume.stale (default), RefetchOnResume.always, or RefetchOnResume.never.

  • refetchOnReconnect: Controls refetch behavior when network connectivity is restored. Can be RefetchOnReconnect.stale (default), RefetchOnReconnect.always, or RefetchOnReconnect.never. Requires connectivityChanges to be provided to QueryClient.

  • refetchInterval: Automatically refetch at the specified interval while this hook is mounted.

  • retry: A callback that controls retry behavior on failure. Returns a Duration to retry after waiting, or null to stop retrying. Defaults to 3 retries with exponential backoff (1s, 2s, 4s).

  • retryOnMount: Whether to retry failed queries when this hook mounts. Defaults to true.

  • seed: Initial data to populate the cache before the first fetch. Unlike placeholder, seed data is persisted to the cache. Provide the data directly with Seed.value, or lazily with Seed.lazy — the callback may return null to skip seeding. A seed is applied only while the query has no data yet; cached data is never overwritten.

  • seedUpdatedAt: The timestamp when seed data was last updated. Used to determine staleness of seed data. Provide it directly with SeedUpdatedAt.value, or lazily with SeedUpdatedAt.lazy.

  • meta: A map of arbitrary metadata attached to this query, accessible in the query function context. When multiple hooks share the same query key, their meta maps are deep merged.

  • shouldRebuild: Decides per update whether the observing widget rebuilds. Receives the last accepted result and the new result; return true to rebuild or false to suppress. When omitted, the widget rebuilds on every change.

  • client: The QueryClient to use. If provided, takes precedence over the nearest QueryClientProvider ancestor.

See also:

Implementation

QuerySnapshot<TData, TError> useQuery<TData, TError>(
  List<Object?> queryKey,
  QueryFn<TData> queryFn, {
  bool? enabled,
  NetworkMode? networkMode,
  StaleDuration? staleDuration,
  GcDuration? gcDuration,
  Placeholder<TData>? placeholder,
  RefetchOnMount? refetchOnMount,
  RefetchOnResume? refetchOnResume,
  RefetchOnReconnect? refetchOnReconnect,
  Duration? refetchInterval,
  RetryResolver<TError>? retry,
  bool? retryOnMount,
  Seed<TData>? seed,
  SeedUpdatedAt? seedUpdatedAt,
  Map<String, dynamic>? meta,
  ShouldRebuild<QuerySnapshot<TData, TError>>? shouldRebuild,
  QueryClient? client,
}) {
  return useQueryOptions(
    QueryOptions(
      queryKey,
      queryFn,
      enabled: enabled,
      networkMode: networkMode,
      staleDuration: staleDuration,
      gcDuration: gcDuration,
      placeholder: placeholder,
      refetchOnMount: refetchOnMount,
      refetchOnResume: refetchOnResume,
      refetchOnReconnect: refetchOnReconnect,
      refetchInterval: refetchInterval,
      retry: retry,
      retryOnMount: retryOnMount,
      seed: seed,
      seedUpdatedAt: seedUpdatedAt,
      meta: meta,
    ),
    shouldRebuild: shouldRebuild,
    client: client,
  );
}