Interface InsertManyOptions

interface InsertManyOptions {
    includeResultMetadata?: boolean;
    lean?: boolean;
    limit?: number;
    ordered?: boolean;
    populate?: string | string[] | PopulateOptions | PopulateOptions[];
    rawResult?: boolean;
    session?: mongoose.mongo.ClientSession;
    throwOnValidationError?: boolean;
}

Hierarchy (view full)

Properties

includeResultMetadata?: boolean
lean?: boolean
limit?: number
ordered?: boolean
populate?: string | string[] | PopulateOptions | PopulateOptions[]
rawResult?: boolean
throwOnValidationError?: boolean