type LoadSubsetOptions = object;
type LoadSubsetOptions = object;
Defined in: packages/db/src/types.ts:256
optional limit: number;
optional limit: number;
Defined in: packages/db/src/types.ts:262
The limit of the data to load
optional orderBy: OrderBy;
optional orderBy: OrderBy;
Defined in: packages/db/src/types.ts:260
The order by clause to sort the data
optional subscription: Subscription;
optional subscription: Subscription;
Defined in: packages/db/src/types.ts:271
The subscription that triggered the load. Advanced sync implementations can use this for:
Available when called from CollectionSubscription, may be undefined for direct calls
optional where: BasicExpression<boolean>;
optional where: BasicExpression<boolean>;
Defined in: packages/db/src/types.ts:258
The where expression to filter the data
