Defined in: index.ts:26
The result of calling injectLiveQuery. Contains reactive signals for the query state and data.
TResult extends object = any
TKey extends string | number = string | number
TUtils extends Record<string, any> = { }
collection: Signal<Collection<TResult, TKey, TUtils, StandardSchemaV1<unknown, unknown>, TResult>>;
collection: Signal<Collection<TResult, TKey, TUtils, StandardSchemaV1<unknown, unknown>, TResult>>;
Defined in: index.ts:36
A signal containing the underlying collection instance
data: Signal<TResult[]>;
data: Signal<TResult[]>;
Defined in: index.ts:34
A signal containing the results as an array
isCleanedUp: Signal<boolean>;
isCleanedUp: Signal<boolean>;
Defined in: index.ts:48
A signal indicating whether the collection has been cleaned up
isError: Signal<boolean>;
isError: Signal<boolean>;
Defined in: index.ts:46
A signal indicating whether the collection has an error
isIdle: Signal<boolean>;
isIdle: Signal<boolean>;
Defined in: index.ts:44
A signal indicating whether the collection is idle
isLoading: Signal<boolean>;
isLoading: Signal<boolean>;
Defined in: index.ts:40
A signal indicating whether the collection is currently loading
isReady: Signal<boolean>;
isReady: Signal<boolean>;
Defined in: index.ts:42
A signal indicating whether the collection is ready
state: Signal<Map<TKey, TResult>>;
state: Signal<Map<TKey, TResult>>;
Defined in: index.ts:32
A signal containing the complete state map of results keyed by their ID
status: Signal<CollectionStatus>;
status: Signal<CollectionStatus>;
Defined in: index.ts:38
A signal containing the current status of the collection
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.
Your weekly dose of JavaScript news. Delivered every Monday to over 100,000 devs, for free.
