File: LiveQueryCollectionUtils.md | Updated: 11/15/2025
Search...
+ K
Auto
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples GitHub Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Docs Examples Github Contributors
Maintainers Partners Support Learn StatsBETA Discord Merch Blog GitHub Ethos Brand Guide
Documentation
Framework
React
Version
Latest
Search...
+ K
Menu
Getting Started
Guides
Collections
Frameworks
Community
API Reference
Framework
React
Version
Latest
Menu
Getting Started
Guides
Collections
Frameworks
Community
API Reference
On this page
Copy Markdown
Type Alias: LiveQueryCollectionUtils
====================================
ts
type LiveQueryCollectionUtils = UtilsRecord & object;
type LiveQueryCollectionUtils = UtilsRecord & object;
Defined in: packages/db/src/query/live/collection-config-builder.ts:39
Type Declaration
----------------
### [LIVE_QUERY_INTERNAL]
ts
[LIVE_QUERY_INTERNAL]: LiveQueryInternalUtils;
[LIVE_QUERY_INTERNAL]: LiveQueryInternalUtils;
ts
getRunCount: () => number;
getRunCount: () => number;
number
ts
getWindow: () =>
| {
limit: number;
offset: number;
}
| undefined;
getWindow: () =>
| {
limit: number;
offset: number;
}
| undefined;
Gets the current window (offset and limit) for an ordered query.
| { limit: number; offset: number; } | undefined
The current window settings, or undefined if the query is not windowed
ts
setWindow: (options) => true | Promise<void>;
setWindow: (options) => true | Promise<void>;
Sets the offset and limit of an ordered query. Is a no-op if the query is not ordered.
WindowOptions
true | Promise<void>
true if no subset loading was triggered, or Promise<void> that resolves when the subset has been loaded
