prorm API Reference
    Preparing search index...

    Interface ScopeOptions

    A named, reusable fragment of FindOptions that a model can apply by name, either always (the default scope) or on request.

    interface ScopeOptions {
        attributes?: AttributesOptions;
        where?: WhereOptions<any>;
        include?: IncludeOptions[] | Includeable[];
        order?: Order;
        limit?: number;
        offset?: number;
        transaction?: Transaction;
    }
    Index
    attributes?: AttributesOptions
    where?: WhereOptions<any>
    include?: IncludeOptions[] | Includeable[]
    order?: Order
    limit?: number
    offset?: number
    transaction?: Transaction