Defined in: packages/query-db-collection/src/query.ts:96
Configuration options for creating a Query Collection
T extends object = object
The explicit type of items stored in the collection
TQueryFn extends (context) => any = (context) => any
The queryFn type
TError = unknown
The type of errors that can occur during queries
TQueryKey extends QueryKey = QueryKey
The type of the query key
TKey extends string | number = string | number
The type of the item keys
TSchema extends StandardSchemaV1 = never
The schema type for validation
TQueryData = Awaited<ReturnType<TQueryFn>>
optional enabled: Enabled<TQueryData, TError, TQueryData, TQueryKey>;Defined in: packages/query-db-collection/src/query.ts:125
Whether the query should automatically run (default: true)
optional gcTime: number;Defined in: packages/query-db-collection/src/query.ts:160
Time in milliseconds after which the collection will be garbage collected when it has no active subscribers. Defaults to 5 minutes (300000ms).
BaseCollectionConfig.gcTimeoptional initialData: TQueryData | InitialDataFunction<TQueryData>;Defined in: packages/query-db-collection/src/query.ts:200
Data used to initialize the TanStack Query cache for an eager collection. The value has the original Query response shape and is projected through the collection's select option before rows are materialized.
optional initialDataUpdatedAt: number | () => number | undefined;Defined in: packages/query-db-collection/src/query.ts:208
The timestamp TanStack Query uses to determine initialData freshness.
optional meta: Record<string, unknown>;Defined in: packages/query-db-collection/src/query.ts:237
Metadata to pass to the query. Available in queryFn via context.meta
// Using meta for error context
queryFn: async (context) => {
try {
return await api.getTodos(userId)
} catch (error) {
// Use meta for better error messages
throw new Error(
context.meta?.errorMessage || 'Failed to load todos'
)
}
},
meta: {
errorMessage: `Failed to load todos for user ${userId}`
}optional networkMode: NetworkMode;Defined in: packages/query-db-collection/src/query.ts:188
optional persistedGcTime: number;Defined in: packages/query-db-collection/src/query.ts:215
queryClient: QueryClient;Defined in: packages/query-db-collection/src/query.ts:121
The TanStack Query client instance
queryFn: TQueryFn extends (context) => any[] | Promise<any[]> ? (context) => T[] | Promise<T[]> : TQueryFn;Defined in: packages/query-db-collection/src/query.ts:110
Function that fetches data from the server. Must return the complete collection state
queryKey: TQueryKey | TQueryKeyBuilder<TQueryKey>;Defined in: packages/query-db-collection/src/query.ts:108
The query key used by TanStack Query to identify this query
optional refetchInterval: number | false | (query) => number | false | undefined;Defined in: packages/query-db-collection/src/query.ts:132
optional refetchOnMount: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:181
optional refetchOnReconnect: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:174
optional refetchOnWindowFocus: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:167
optional retry: RetryValue<TError>;Defined in: packages/query-db-collection/src/query.ts:139
optional retryDelay: RetryDelayValue<TError>;Defined in: packages/query-db-collection/src/query.ts:146
optional select: (data) => T[];Defined in: packages/query-db-collection/src/query.ts:119
Extracts the row array TanStack DB materializes from the Query response. The Query cache keeps the original response shape.
TQueryData
T[]
optional staleTime: StaleTimeFunction<TQueryData, TError, TQueryData, TQueryKey>;Defined in: packages/query-db-collection/src/query.ts:153