Defined in: index.ts:32
The result of calling injectLiveQuery. Contains reactive signals for the query state and data.
TContext extends Context
collection: Signal<
| Collection<{ [K in string | number | symbol]: ResultValue<TContext>[K] }, string | number, {
}, StandardSchemaV1<unknown, unknown>, { [K in string | number | symbol]: ResultValue<TContext>[K] }>
| null>;
Defined in: index.ts:38
A signal containing the underlying collection instance (null for disabled queries)
data: Signal<InferResultType<TContext>>;
Defined in: index.ts:36
A signal containing the results as an array, or single result for findOne queries
isCleanedUp: Signal<boolean>;
Defined in: index.ts:54
A signal indicating whether the collection has been cleaned up
isError: Signal<boolean>;
Defined in: index.ts:52
A signal indicating whether the collection has an error
isIdle: Signal<boolean>;
Defined in: index.ts:50
A signal indicating whether the collection is idle
isLoading: Signal<boolean>;
Defined in: index.ts:46
A signal indicating whether the collection is currently loading
isReady: Signal<boolean>;
Defined in: index.ts:48
A signal indicating whether the collection is ready
state: Signal<Map<string | number, { [K in string | number | symbol]: ResultValue<TContext>[K] }>>;
Defined in: index.ts:34
A signal containing the complete state map of results keyed by their ID
status: Signal<CollectionStatus | "disabled">;
Defined in: index.ts:44
A signal containing the current status of the collection