interface ModelGetOptions {
    clone?: boolean;
    plain?: boolean;
    raw?: boolean;
}

Properties

Properties

clone?: boolean

Only evaluated when "key === undefined". If set to true, all objects including child-objects will be copies and will not reference the original dataValues-object.

Default

false
plain?: boolean

If set to true, included instances will be returned as plain objects

Default

false
raw?: boolean

If set to true, field and virtual setters will be ignored.

Default

false