Interface findManyObjectsOptions

Configuration object for methods that find many documents as objects at once.

BigfootDS

interface findManyObjectsOptions {
    limit: number;
    projection: object;
}

Properties

Properties

limit: number

A number to limit how many documents should be returned during a findMany operation.

BigfootDS

projection: object

A NeDB projection object. This is passed along as-is to NeDB, so please refer to their documentation about projections.

https://github.com/louischatriot/nedb?tab=readme-ov-file#projections

BigfootDS