prorm API Reference
    Preparing search index...

    Interface MongoFindOptions<T>

    Options accepted by MongoStore.find.

    interface MongoFindOptions<T extends Document = Document> {
        projection?: Document;
        sort?: Sort;
        limit?: number;
        skip?: number;
    }

    Type Parameters

    • T extends Document = Document

    Hierarchy

    • Omit<FindOptions<T>, "sort" | "limit" | "skip" | "projection">
      • MongoFindOptions
    Index
    projection?: Document
    sort?: Sort
    limit?: number
    skip?: number