Defined in: packages/query-db-collection/src/query.ts:100
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:129
Whether the query should automatically run (default: true)
optional gcTime: number;Defined in: packages/query-db-collection/src/query.ts:164
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:204
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:212
The timestamp TanStack Query uses to determine initialData freshness.
optional meta: Record<string, unknown>;Defined in: packages/query-db-collection/src/query.ts:241
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:192
optional persistedGcTime: number;Defined in: packages/query-db-collection/src/query.ts:219
queryClient: QueryClient;Defined in: packages/query-db-collection/src/query.ts:125
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:114
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:112
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:136
optional refetchOnMount: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:185
optional refetchOnReconnect: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:178
optional refetchOnWindowFocus: boolean | "always" | (query) => boolean | "always";Defined in: packages/query-db-collection/src/query.ts:171
optional retry: RetryValue<TError>;Defined in: packages/query-db-collection/src/query.ts:143
optional retryDelay: RetryDelayValue<TError>;Defined in: packages/query-db-collection/src/query.ts:150
optional select: (data) => T[];Defined in: packages/query-db-collection/src/query.ts:123
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:157