Model
A Model represents a table in the database. Instances of this class represent a database row.
Model instances operate with the concept of a dataValues
property, which stores the actual values represented by the instance.
By default, the values from dataValues can also be accessed directly from the Instance, that is:
instance.field
// is the same as
instance.get('field')
// is the same as
instance.getDataValue('field')
However, if getters and/or setters are defined for field
they will be invoked, instead of returning the value from dataValues
.
Accessing properties directly or using get
is preferred for regular use, getDataValue
should only be used for custom getters.
See:
- Sequelize#define for more information about getters and setters
Static Method Summary
Static Public Methods | ||
public static |
Add a new scope to the model. |
|
public static |
Run an aggregation method on the specified field |
|
public static |
Creates an association between this (the source) and the provided target. |
|
public static |
belongsToMany(target: Model, options: Object): BelongsToMany Create an N:M association with a join table. |
|
public static |
Builds a new model instance. |
|
public static |
Create and insert multiple instances in bulk. |
|
public static |
Count the number of records matching the provided where clause. |
|
public static |
Builds a new model instance and calls save on it. |
|
public static |
Decrement the value of one or more columns. |
since 4.36.0 |
public static |
Run a describe query on the table. |
|
public static |
Delete multiple instances, or set their deletedAt timestamp to the current time if |
|
public static |
Drop the table represented by this Model |
|
public static |
Search for multiple instances. |
|
public static |
findAndCountAll(options: Object): Promise<{count: number, rows: Model[]}> Find all the rows matching your query, within a specified offset / limit, and get the total number of rows matching your query. |
|
public static |
Search for a single instance by its primary key._ |
|
public static |
findCreateFind(options: Object): Promise<Model, boolean> A more performant findOrCreate that will not work under a transaction (at least not in postgres) Will execute a find call, if empty then attempt to create, if unique constraint then attempt to find again |
|
public static |
Search for a single instance. |
|
public static |
findOrBuild(options: Object): Promise<Model, boolean> Find a row that matches the query, or build (but don't save) the row if none is found. The successful result of the promise will be (instance, built) |
|
public static |
findOrCreate(options: Object): Promise<Model, boolean> Find a row that matches the query, or build and save the row if none is found The successful result of the promise will be (instance, created) |
|
public static |
getTableName(): string | Object Get the table name of the model, taking schema into account. |
|
public static |
Creates a 1:m association between this (the source) and the provided target. |
|
public static |
Creates an association between this (the source) and the provided target. |
|
public static |
Increment the value of one or more columns. |
|
public static |
Initialize a model, representing a table in the DB, with attributes and options. |
|
public static |
Find the maximum value of field |
|
public static |
Find the minimum value of field |
|
public static |
removeAttribute(attribute: string) Remove attribute from model definition |
|
public static |
Restore multiple instances if |
|
public static |
Apply a schema to this model. |
|
public static |
Apply a scope created in |
|
public static |
Find the sum of field |
|
public static |
Sync this Model to the DB, that is create the table. |
|
public static |
Truncate all instances of the model. |
|
public static |
Get un-scoped model |
|
public static |
Update multiple instances that match the where options. |
|
public static |
Insert or update a single row. |
Constructor Summary
Public Constructor | ||
public |
constructor(values: Object, options: Object) Builds a new model instance. |
Member Summary
Public Members | ||
public |
isNewRecord: boolean: * Returns true if this instance has not yet been persisted to the database |
|
public get |
A reference to the sequelize instance |
Method Summary
Public Methods | ||
public |
If changed is called with a string it will return a boolean indicating whether the value of that key in |
|
public |
Decrement the value of one or more columns. |
|
public |
Destroy the row corresponding to this instance. |
|
public |
Check whether this and |
|
public |
equalsOneOf(others: Array<Model>): boolean Check if this is equal to one of |
|
public |
If no key is given, returns all values of the instance, also invoking virtual getters. |
|
public |
getDataValue(key: string): any Get the value of the underlying data value |
|
public |
Increment the value of one or more columns. |
since 4.0.0 |
public |
Helper method to determine if a instance is "soft deleted". |
|
public |
Returns the previous value for key from |
|
public |
Refresh the current instance in-place, i.e. |
|
public |
Restore the row corresponding to this instance. |
|
public |
Validate this instance, and if the validation passes, persist it to the database. |
|
public |
Set is used to update values on the instance (the sequelize representation of the instance that is, remember that nothing will be persisted before you actually call |
|
public |
setDataValue(key: string, value: any) Update the underlying data value |
|
public |
Convert the instance to a JSON representation. |
|
public |
This is the same as calling |
|
public |
Validate the attributes of this instance according to validation rules set in the model definition. |
|
public |
Get an object representing the query for this instance, use with |
Static Public Methods
public static addScope(name: string, scope: Object | Function, options: Object) source
Add a new scope to the model. This is especially useful for adding scopes with includes, when the model you want to include is not available at the time this model is defined.
By default this will throw an error if a scope with that name already exists. Pass override: true
in the options object to silence this error.
public static aggregate(attribute: string, aggregateFunction: string, options: Object): Promise<DataTypes|Object> source
Run an aggregation method on the specified field
Params:
Name | Type | Attribute | Description |
attribute | string | The attribute to aggregate over. Can be a field name or * |
|
aggregateFunction | string | The function to use for aggregation, e.g. sum, max etc. |
|
options | Object |
|
Query options. See sequelize.query for full options |
options.where | Object |
|
A hash of search attributes. |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.dataType | DataTypes | string |
|
The type of the result. If |
options.distinct | boolean |
|
Applies DISTINCT to the field being aggregated over |
options.transaction | Transaction |
|
Transaction to run query under |
options.plain | boolean |
|
When |
public static belongsTo(target: Model, options: Object): BelongsTo source
Creates an association between this (the source) and the provided target. The foreign key is added on the source.
Params:
Name | Type | Attribute | Description |
target | Model | The target model |
|
options | Object |
|
belongsTo association options |
options.hooks | boolean |
|
Set to true to run before-/afterDestroy hooks when an associated model is deleted because of a cascade. For example if |
options.as | string |
|
The alias of this model, in singular form. See also the |
options.foreignKey | string | Object |
|
The name of the foreign key attribute in the source table or an object representing the type definition for the foreign column (see |
options.targetKey | string |
|
The name of the attribute to use as the key for the association in the target table. Defaults to the primary key of the target table |
options.onDelete | string |
|
SET NULL if foreignKey allows nulls, NO ACTION if otherwise |
options.onUpdate | string |
|
Sets 'ON UPDATE' |
options.constraints | boolean |
|
Should on update and on delete constraints be enabled on the foreign key. |
Example:
Profile.belongsTo(User) // This will add userId to the profile table
public static belongsToMany(target: Model, options: Object): BelongsToMany source
Create an N:M association with a join table. Defining through
is required.
Params:
Name | Type | Attribute | Description |
target | Model | Target model |
|
options | Object | belongsToMany association options |
|
options.hooks | boolean |
|
Set to true to run before-/afterDestroy hooks when an associated model is deleted because of a cascade. For example if |
options.through | Model | string | Object | The name of the table that is used to join source and target in n:m associations. Can also be a sequelize model if you want to define the junction table yourself and add extra attributes to it. |
|
options.through.model | Model |
|
The model used to join both sides of the N:M association. |
options.through.scope | Object |
|
A key/value set that will be used for association create and find defaults on the through model. (Remember to add the attributes to the through model) |
options.through.unique | boolean |
|
If true a unique key will be generated from the foreign keys used (might want to turn this off and create specific unique keys when using scopes) |
options.as | string | Object |
|
The alias of this association. If you provide a string, it should be plural, and will be singularized using node.inflection. If you want to control the singular version yourself, provide an object with |
options.foreignKey | string | Object |
|
The name of the foreign key in the join table (representing the source model) or an object representing the type definition for the foreign column (see |
options.otherKey | string | Object |
|
The name of the foreign key in the join table (representing the target model) or an object representing the type definition for the other column (see |
options.scope | Object |
|
A key/value set that will be used for association create and find defaults on the target. (sqlite not supported for N:M) |
options.timestamps | boolean |
|
Should the join model have timestamps |
options.onDelete | string |
|
Cascade if this is a n:m, and set null if it is a 1:m |
options.onUpdate | string |
|
Sets |
options.constraints | boolean |
|
Should on update and on delete constraints be enabled on the foreign key. |
Example:
// Automagically generated join model
User.belongsToMany(Project, { through: 'UserProjects' })
Project.belongsToMany(User, { through: 'UserProjects' })
// Join model with additional attributes
const UserProjects = sequelize.define('UserProjects', {
started: Sequelize.BOOLEAN
})
User.belongsToMany(Project, { through: UserProjects })
Project.belongsToMany(User, { through: UserProjects })
public static build(values: Object | Array, options: Object): Model | Array<Model> source
Builds a new model instance.
Params:
Name | Type | Attribute | Description |
values | Object | Array | An object of key value pairs or an array of such. If an array, the function will return an array of instances. |
|
options | Object |
|
Instance build options |
options.raw | boolean |
|
If set to true, values will ignore field and virtual setters. |
options.isNewRecord | boolean |
|
Is this new record |
options.include | Array |
|
an array of include options - Used to build prefetched/included model instances. See |
public static bulkCreate(records: Array, options: Object): Promise<Array<Model>> source
Create and insert multiple instances in bulk.
The success handler is passed an array of instances, but please notice that these may not completely represent the state of the rows in the DB. This is because MySQL and SQLite do not make it easy to obtain back automatically generated IDs and other default values in a way that can be mapped to multiple records. To obtain Instances for the newly created values, you will need to query for them again.
If validation fails, the promise is rejected with an array-like AggregateError
Params:
Name | Type | Attribute | Description |
records | Array | List of objects (key/value pairs) to create instances from |
|
options | Object |
|
Bulk create options |
options.fields | Array |
|
Fields to insert (defaults to all fields) |
options.validate | boolean |
|
Should each row be subject to validation before it is inserted. The whole insert will fail if one row fails validation |
options.hooks | boolean |
|
Run before / after bulk create hooks? |
options.individualHooks | boolean |
|
Run before / after create hooks for each individual Instance? BulkCreate hooks will still be run if options.hooks is true. |
options.ignoreDuplicates | boolean |
|
Ignore duplicate values for primary keys? (not supported by MSSQL or Postgres < 9.5) |
options.updateOnDuplicate | Array |
|
Fields to update if row key already exists (on duplicate key update)? (only supported by MySQL, MariaDB, SQLite >= 3.24.0 & Postgres >= 9.5). By default, all fields are updated. |
options.transaction | Transaction |
|
Transaction to run query under |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.returning | boolean | Array |
|
If true, append RETURNING * to get back all values; if an array of column names, append RETURNING <columns> to get back specific columns (Postgres only) |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
public static count(options: Object): Promise<number> source
Count the number of records matching the provided where clause.
If you provide an include
option, the number of matching associations will be counted instead.
Params:
Name | Type | Attribute | Description |
options | Object |
|
options |
options.where | Object |
|
A hash of search attributes. |
options.include | Object |
|
Include options. See |
options.paranoid | boolean |
|
Set |
options.distinct | boolean |
|
Apply COUNT(DISTINCT(col)) on primary key or on options.col. |
options.col | string |
|
Column on which COUNT() should be applied |
options.attributes | Array |
|
Used in conjunction with |
options.group | Array |
|
For creating complex counts. Will return multiple rows as needed. |
options.transaction | Transaction |
|
Transaction to run query under |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
public static create(values: Object, options: Object): Promise<Model> source
Builds a new model instance and calls save on it.
Params:
Name | Type | Attribute | Description |
values | Object | hash of data values to create new record with |
|
options | Object |
|
build and query options |
options.raw | boolean |
|
If set to true, values will ignore field and virtual setters. |
options.isNewRecord | boolean |
|
Is this new record |
options.include | Array |
|
an array of include options - Used to build prefetched/included model instances. See |
options.fields | Array |
|
If set, only columns matching those in fields will be saved |
options.fields | string[] |
|
An optional array of strings, representing database columns. If fields is provided, only those columns will be validated and saved. |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
options.validate | boolean |
|
If false, validations won't be run. |
options.hooks | boolean |
|
Run before and after create / update + validate hooks |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
options.returning | boolean |
|
Return the affected rows (only for postgres) |
public static decrement(fields: string | Array | Object, options: Object): Promise<Model[], ?number> since 4.36.0 source
Decrement the value of one or more columns. This is done in the database, which means it does not use the values currently stored on the Instance. The decrement is done using a
sql SET column = column - X WHERE foo = 'bar'
query. To get the correct value after a decrement into the Instance you should do a reload.
Params:
Name | Type | Attribute | Description |
fields | string | Array | Object | If a string is provided, that column is incremented by the value of |
|
options | Object | decrement options, similar to increment |
Return:
Promise<Model[], ?number> | returns an array of affected rows and affected count with |
Example:
Model.decrement('number', { where: { foo: 'bar' });
Model.decrement(['number', 'count'], { by: 2, where: { foo: 'bar' } });
// `by` is ignored, since each column has its own value
Model.decrement({ answer: 42, tries: -1}, { by: 2, where: { foo: 'bar' } });
public static describe(schema: string, options: Object): Promise source
Run a describe query on the table.
public static destroy(options: Object): Promise<number> source
Delete multiple instances, or set their deletedAt timestamp to the current time if paranoid
is enabled.
Params:
Name | Type | Attribute | Description |
options | Object | destroy options |
|
options.where | Object |
|
Filter the destroy |
options.hooks | boolean |
|
Run before / after bulk destroy hooks? |
options.individualHooks | boolean |
|
If set to true, destroy will SELECT all records matching the where parameter and will execute before / after destroy hooks on each row |
options.limit | number |
|
How many rows to delete |
options.force | boolean |
|
Delete instead of setting deletedAt to current timestamp (only applicable if |
options.truncate | boolean |
|
If set to true, dialects that support it will use TRUNCATE instead of DELETE FROM. If a table is truncated the where and limit options are ignored |
options.cascade | boolean |
|
Only used in conjunction with TRUNCATE. Truncates all tables that have foreign-key references to the named table, or to any tables added to the group due to CASCADE. |
options.restartIdentity | boolean |
|
Only used in conjunction with TRUNCATE. Automatically restart sequences owned by columns of the truncated table. |
options.transaction | Transaction |
|
Transaction to run query under |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
public static drop(options: Object): Promise source
Drop the table represented by this Model
Params:
Name | Type | Attribute | Description |
options | Object |
|
drop options |
options.cascade | boolean |
|
Also drop all objects depending on this table, such as views. Only works in postgres |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
public static findAll(options: Object): Promise<Array<Model>> source
Search for multiple instances.
Params:
Name | Type | Attribute | Description |
options | Object |
|
A hash of options to describe the scope of the search |
options.where | Object |
|
A hash of attributes to describe your search. See above for examples. |
options.attributes | Array<string> | Object |
|
A list of the attributes that you want to select, or an object with |
options.attributes.include | Array<string> |
|
Select all the attributes of the model, plus some additional ones. Useful for aggregations, e.g. |
options.attributes.exclude | Array<string> |
|
Select all the attributes of the model, except some few. Useful for security purposes e.g. |
options.paranoid | boolean |
|
If true, only non-deleted records will be returned. If false, both deleted and non-deleted records will be returned. Only applies if |
options.include | Array<Object|Model|string> |
|
A list of associations to eagerly load using a left join. Supported is either |
options.include[].model | Model |
|
The model you want to eagerly load |
options.include[].as | string |
|
The alias of the relation, in case the model you want to eagerly load is aliased. For |
options.include[].association | Association |
|
The association you want to eagerly load. (This can be used instead of providing a model/as pair) |
options.include[].where | Object |
|
Where clauses to apply to the child models. Note that this converts the eager load to an inner join, unless you explicitly set |
options.include[].or | boolean |
|
Whether to bind the ON and WHERE clause together by OR instead of AND. |
options.include[].on | Object |
|
Supply your own ON condition for the join. |
options.include[].attributes | Array<string> |
|
A list of attributes to select from the child model |
options.include[].required | boolean |
|
If true, converts to an inner join, which means that the parent model will only be loaded if it has any matching children. True if |
options.include[].right | boolean |
|
If true, converts to a right join if dialect support it. Ignored if |
options.include[].separate | boolean |
|
If true, runs a separate query to fetch the associated instances, only supported for hasMany associations |
options.include[].limit | number |
|
Limit the joined rows, only supported with include.separate=true |
options.include[].through.where | Object |
|
Filter on the join model for belongsToMany relations |
options.include[].through.attributes | Array |
|
A list of attributes to select from the join model for belongsToMany relations |
options.include[].include | Array<Object|Model|string> |
|
Load further nested related models |
options.include[].duplicating | boolean |
|
Mark the include as duplicating, will prevent a subquery from being used. |
options.order | Array | fn | col | literal |
|
Specifies an ordering. Using an array, you can provide several columns / functions to order by. Each element can be further wrapped in a two-element array. The first element is the column / function to order by, the second is the direction. For example: |
options.limit | number |
|
Limit for result |
options.offset | number |
|
Offset for result |
options.transaction | Transaction |
|
Transaction to run query under |
options.lock | string | Object |
|
Lock the selected rows. Possible options are transaction.LOCK.UPDATE and transaction.LOCK.SHARE. Postgres also supports transaction.LOCK.KEY_SHARE, transaction.LOCK.NO_KEY_UPDATE and specific model locks with joins. See transaction.LOCK for an example |
options.skipLocked | boolean |
|
Skip locked rows. Only supported in Postgres. |
options.raw | boolean |
|
Return raw result. See sequelize.query for more information. |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.having | Object |
|
Having options |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
options.rejectOnEmpty | boolean | Error |
|
Throws an error when no records found |
Example:
Model.findAll({
where: {
attr1: 42,
attr2: 'cake'
}
})
# WHERE attr1 = 42 AND attr2 = 'cake'
const {gt, lte, ne, in: opIn} = Sequelize.Op;
Model.findAll({
where: {
attr1: {
[gt]: 50
},
attr2: {
[lte]: 45
},
attr3: {
[opIn]: [1,2,3]
},
attr4: {
[ne]: 5
}
}
})
# WHERE attr1 > 50 AND attr2 <= 45 AND attr3 IN (1,2,3) AND attr4 != 5
const {or, and, gt, lt} = Sequelize.Op;
Model.findAll({
where: {
name: 'a project',
[or]: [
{id: [1, 2, 3]},
{
[and]: [
{id: {[gt]: 10}},
{id: {[lt]: 100}}
]
}
]
}
});
# WHERE `Model`.`name` = 'a project' AND (`Model`.`id` IN (1, 2, 3) OR (`Model`.`id` > 10 AND `Model`.`id` < 100));
See:
- Operators for possible operators __Alias__: _all_ The promise is resolved with an array of Model instances if the query succeeds._
- Sequelize#query
public static findAndCountAll(options: Object): Promise<{count: number, rows: Model[]}> source
Find all the rows matching your query, within a specified offset / limit, and get the total number of rows matching your query. This is very useful for paging
Params:
Name | Type | Attribute | Description |
options | Object |
|
See findAll options |
Example:
Model.findAndCountAll({
where: ...,
limit: 12,
offset: 12
}).then(result => {
...
})
# In the above example, `result.rows` will contain rows 13 through 24, while `result.count` will return the total number of rows that matched your query.
# When you add includes, only those which are required (either because they have a where clause, or because `required` is explicitly set to true on the include) will be added to the count part.
# Suppose you want to find all users who have a profile attached:
User.findAndCountAll({
include: [
{ model: Profile, required: true}
],
limit 3
});
# Because the include for `Profile` has `required` set it will result in an inner join, and only the users who have a profile will be counted. If we remove `required` from the include, both users with and without profiles will be counted
See:
- Model.findAll for a specification of find and query options
- Model.count for a specification of count options
public static findByPk(param: number | string | Buffer, options: Object): Promise<Model> source
Search for a single instance by its primary key._
Params:
Name | Type | Attribute | Description |
param | number | string | Buffer | The value of the desired instance's primary key. |
|
options | Object |
|
find options |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
See:
- Model.findAll for a full explanation of options, Note that options.where is not supported.
public static findCreateFind(options: Object): Promise<Model, boolean> source
A more performant findOrCreate that will not work under a transaction (at least not in postgres) Will execute a find call, if empty then attempt to create, if unique constraint then attempt to find again
See:
- Model.findAll for a full specification of find and options
public static findOne(options: Object): Promise<Model> source
Search for a single instance. This applies LIMIT 1, so the listener will always be called with a single instance.
Alias: find
Params:
Name | Type | Attribute | Description |
options | Object |
|
A hash of options to describe the scope of the search |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
See:
- Model.findAll for an explanation of options
public static findOrBuild(options: Object): Promise<Model, boolean> source
Find a row that matches the query, or build (but don't save) the row if none is found. The successful result of the promise will be (instance, built)
Params:
Name | Type | Attribute | Description |
options | Object | find options |
|
options.where | Object | A hash of search attributes. If |
|
options.defaults | Object |
|
Default values to use if building a new instance |
options.transaction | Object |
|
Transaction to run query under |
public static findOrCreate(options: Object): Promise<Model, boolean> source
Find a row that matches the query, or build and save the row if none is found The successful result of the promise will be (instance, created)
If no transaction is passed in the options
object, a new transaction will be created internally, to prevent the race condition where a matching row is created by another connection after the find but before the insert call.
However, it is not always possible to handle this case in SQLite, specifically if one transaction inserts and another tries to select before the first one has committed. In this case, an instance of sequelize. TimeoutError will be thrown instead.
If a transaction is created, a savepoint will be created instead, and any unique constraint violation will be handled internally.
Params:
Name | Type | Attribute | Description |
options | Object | find and create options |
|
options.where | Object | where A hash of search attributes. If |
|
options.defaults | Object |
|
Default values to use if creating a new instance |
options.transaction | Transaction |
|
Transaction to run query under |
See:
- Model.findAll for a full specification of find and options
public static getTableName(): string | Object source
Get the table name of the model, taking schema into account. The method will return The name as a string if the model has no schema,
or an object with tableName
, schema
and delimiter
properties.
public static hasMany(target: Model, options: Object): HasMany source
Creates a 1:m association between this (the source) and the provided target. The foreign key is added on the target.
Params:
Name | Type | Attribute | Description |
target | Model | Target model |
|
options | Object |
|
hasMany association options |
options.hooks | boolean |
|
Set to true to run before-/afterDestroy hooks when an associated model is deleted because of a cascade. For example if |
options.as | string | Object |
|
The alias of this model. If you provide a string, it should be plural, and will be singularized using node.inflection. If you want to control the singular version yourself, provide an object with |
options.foreignKey | string | Object |
|
The name of the foreign key in the target table or an object representing the type definition for the foreign column (see |
options.sourceKey | string |
|
The name of the field to use as the key for the association in the source table. Defaults to the primary key of the source table |
options.scope | Object |
|
A key/value set that will be used for association create and find defaults on the target. (sqlite not supported for N:M) |
options.onDelete | string |
|
SET NULL if foreignKey allows nulls, CASCADE if otherwise |
options.onUpdate | string |
|
Set |
options.constraints | boolean |
|
Should on update and on delete constraints be enabled on the foreign key. |
Example:
User.hasMany(Profile) // This will add userId to the profile table
public static hasOne(target: Model, options: Object): HasOne source
Creates an association between this (the source) and the provided target. The foreign key is added on the target.
Params:
Name | Type | Attribute | Description |
target | Model | Target model |
|
options | Object |
|
hasOne association options |
options.hooks | boolean |
|
Set to true to run before-/afterDestroy hooks when an associated model is deleted because of a cascade. For example if |
options.as | string |
|
The alias of this model, in singular form. See also the |
options.foreignKey | string | Object |
|
The name of the foreign key attribute in the target model or an object representing the type definition for the foreign column (see |
options.sourceKey | string |
|
The name of the attribute to use as the key for the association in the source table. Defaults to the primary key of the source table |
options.onDelete | string |
|
SET NULL if foreignKey allows nulls, CASCADE if otherwise |
options.onUpdate | string |
|
Sets 'ON UPDATE' |
options.constraints | boolean |
|
Should on update and on delete constraints be enabled on the foreign key. |
options.uniqueKey | string |
|
The custom name for unique constraint. |
Example:
User.hasOne(Profile) // This will add userId to the profile table
public static increment(fields: string | Array | Object, options: Object): Promise<Model[], ?number> source
Increment the value of one or more columns. This is done in the database, which means it does not use the values currently stored on the Instance. The increment is done using a
SET column = column + X WHERE foo = 'bar'
query. To get the correct value after an increment into the Instance you should do a reload.
Params:
Name | Type | Attribute | Description |
fields | string | Array | Object | If a string is provided, that column is incremented by the value of |
|
options | Object | increment options |
|
options.where | Object | conditions hash |
|
options.by | number |
|
The number to increment by |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
Return:
Promise<Model[], ?number> | returns an array of affected rows and affected count with |
Example:
Model.increment('number', { where: { foo: 'bar' });
Model.increment(['number', 'count'], { by: 2, where: { foo: 'bar' } });
// `by` is ignored, as each column has its own value
Model.increment({ answer: 42, tries: -1}, { by: 2, where: { foo: 'bar' } });
See:
public static init(attributes: Object, options: Object): Model source
Initialize a model, representing a table in the DB, with attributes and options.
The table columns are defined by the hash that is given as the first argument. Each attribute of the hash represents a column.
For more about Validations
More examples, Model Definition
Params:
Name | Type | Attribute | Description |
attributes | Object | An object, where each attribute is a column of the table. Each column can be either a DataType, a string or a type-description object, with the properties described below: |
|
attributes.column | string | DataTypes | Object | The description of a database column |
|
attributes.column.type | string | DataTypes | A string or a data type |
|
attributes.column.allowNull | boolean |
|
If false, the column will have a NOT NULL constraint, and a not null validation will be run before an instance is saved. |
attributes.column.defaultValue | any |
|
A literal default value, a JavaScript function, or an SQL function (see |
attributes.column.unique | string | boolean |
|
If true, the column will get a unique constraint. If a string is provided, the column will be part of a composite unique index. If multiple columns have the same string, they will be part of the same unique index |
attributes.column.primaryKey | boolean |
|
If true, this attribute will be marked as primary key |
attributes.column.field | string |
|
If set, sequelize will map the attribute name to a different name in the database |
attributes.column.autoIncrement | boolean |
|
If true, this column will be set to auto increment |
attributes.column.autoIncrementIdentity | boolean |
|
If true, combined with autoIncrement=true, will use Postgres |
attributes.column.comment | string |
|
Comment for this column |
attributes.column.references | string | Model |
|
An object with reference configurations |
attributes.column.references.model | string | Model |
|
If this column references another table, provide it here as a Model, or a string |
attributes.column.references.key | string |
|
The column of the foreign table that this column references |
attributes.column.onUpdate | string |
|
What should happen when the referenced key is updated. One of CASCADE, RESTRICT, SET DEFAULT, SET NULL or NO ACTION |
attributes.column.onDelete | string |
|
What should happen when the referenced key is deleted. One of CASCADE, RESTRICT, SET DEFAULT, SET NULL or NO ACTION |
attributes.column.get | Function |
|
Provide a custom getter for this column. Use |
attributes.column.set | Function |
|
Provide a custom setter for this column. Use |
attributes.column.validate | Object |
|
An object of validations to execute for this column every time the model is saved. Can be either the name of a validation provided by validator.js, a validation function provided by extending validator.js (see the |
options | Object | These options are merged with the default define options provided to the Sequelize constructor |
|
options.sequelize | Object | Define the sequelize instance to attach to the new Model. Throw error if none is provided. |
|
options.modelName | string |
|
Set name of the model. By default its same as Class name. |
options.defaultScope | Object |
|
Define the default search scope to use for this model. Scopes have the same form as the options passed to find / findAll |
options.scopes | Object |
|
More scopes, defined in the same way as defaultScope above. See |
options.omitNull | boolean |
|
Don't persist null values. This means that all columns with null values will not be saved |
options.timestamps | boolean |
|
Adds createdAt and updatedAt timestamps to the model. |
options.paranoid | boolean |
|
Calling |
options.underscored | boolean |
|
Add underscored field to all attributes, this covers user defined attributes, timestamps and foreign keys. Will not affect attributes with explicitly set |
options.freezeTableName | boolean |
|
If freezeTableName is true, sequelize will not try to alter the model name to get the table name. Otherwise, the model name will be pluralized |
options.name | Object |
|
An object with two attributes, |
options.name.singular | string |
|
Singular name for model |
options.name.plural | string |
|
Plural name for model |
options.indexes | Array<Object> |
|
indexes definitions |
options.indexes[].name | string |
|
The name of the index. Defaults to model name + _ + fields concatenated |
options.indexes[].type | string |
|
Index type. Only used by mysql. One of |
options.indexes[].using | string |
|
The method to create the index by ( |
options.indexes[].operator | string |
|
Specify index operator. |
options.indexes[].unique | boolean |
|
Should the index by unique? Can also be triggered by setting type to |
options.indexes[].concurrently | boolean |
|
PostgresSQL will build the index without taking any write locks. Postgres only |
options.indexes[].fields | Array<string|Object> |
|
An array of the fields to index. Each field can either be a string containing the name of the field, a sequelize object (e.g |
options.createdAt | string | boolean |
|
Override the name of the createdAt attribute if a string is provided, or disable it if false. Timestamps must be true. Underscored field will be set with underscored setting. |
options.updatedAt | string | boolean |
|
Override the name of the updatedAt attribute if a string is provided, or disable it if false. Timestamps must be true. Underscored field will be set with underscored setting. |
options.deletedAt | string | boolean |
|
Override the name of the deletedAt attribute if a string is provided, or disable it if false. Timestamps must be true. Underscored field will be set with underscored setting. |
options.tableName | string |
|
Defaults to pluralized model name, unless freezeTableName is true, in which case it uses model name verbatim |
options.schema | string |
|
schema |
options.engine | string |
|
Specify engine for model's table |
options.charset | string |
|
Specify charset for model's table |
options.comment | string |
|
Specify comment for model's table |
options.collate | string |
|
Specify collation for model's table |
options.initialAutoIncrement | string |
|
Set the initial AUTO_INCREMENT value for the table in MySQL. |
options.hooks | Object |
|
An object of hook function that are called before and after certain lifecycle events. The possible hooks are: beforeValidate, afterValidate, validationFailed, beforeBulkCreate, beforeBulkDestroy, beforeBulkUpdate, beforeCreate, beforeDestroy, beforeUpdate, afterCreate, beforeSave, afterDestroy, afterUpdate, afterBulkCreate, afterSave, afterBulkDestroy and afterBulkUpdate. See Hooks for more information about hook functions and their signatures. Each property can either be a function, or an array of functions. |
options.validate | Object |
|
An object of model wide validations. Validations have access to all model values via |
Example:
Project.init({
columnA: {
type: Sequelize.BOOLEAN,
validate: {
is: ['[a-z]','i'], // will only allow letters
max: 23, // only allow values <= 23
isIn: {
args: [['en', 'zh']],
msg: "Must be English or Chinese"
}
},
field: 'column_a'
// Other attributes here
},
columnB: Sequelize.STRING,
columnC: 'MY VERY OWN COLUMN TYPE'
}, {sequelize})
sequelize.models.modelName // The model will now be available in models under the class name
See:
- DataTypes
- Hooks
public static max(field: string, options: Object): Promise<*> source
Find the maximum value of field
See:
- Model.aggregate for options
public static min(field: string, options: Object): Promise<*> source
Find the minimum value of field
See:
- Model.aggregate for options
public static removeAttribute(attribute: string) source
Remove attribute from model definition
Params:
Name | Type | Attribute | Description |
attribute | string | name of attribute to remove |
public static restore(options: Object): Promise source
Restore multiple instances if paranoid
is enabled.
Params:
Name | Type | Attribute | Description |
options | Object | restore options |
|
options.where | Object |
|
Filter the restore |
options.hooks | boolean |
|
Run before / after bulk restore hooks? |
options.individualHooks | boolean |
|
If set to true, restore will find all records within the where parameter and will execute before / after bulkRestore hooks on each row |
options.limit | number |
|
How many rows to undelete (only for mysql) |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.transaction | Transaction |
|
Transaction to run query under |
public static schema(schema: string, options: Object): Model source
Apply a schema to this model. For postgres, this will actually place the schema in front of the table name - "schema"."tableName"
,
while the schema will be prepended to the table name for mysql and sqlite - 'schema.tablename'
.
This method is intended for use cases where the same model is needed in multiple schemas. In such a use case it is important
to call model.schema(schema, [options]).sync()
for each model to ensure the models are created in the correct schema.
If a single default schema per model is needed, set the options.schema='schema'
parameter during the define()
call
for the model.
Params:
Name | Type | Attribute | Description |
schema | string | The name of the schema |
|
options | Object |
|
schema options |
options.schemaDelimiter | string |
|
The character(s) that separates the schema name from the table name |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
See:
- Sequelize#define for more information about setting a default schema.
public static scope(option: Array | Object | string): Model source
Apply a scope created in define
to the model.
Params:
Name | Type | Attribute | Description |
option | Array | Object | string |
|
The scope(s) to apply. Scopes can either be passed as consecutive arguments, or as an array of arguments. To apply simple scopes and scope functions with no arguments, pass them as strings. For scope function, pass an object, with a |
Return:
Model | A reference to the model, with the scope(s) applied. Calling scope again on the returned model will clear the previous scope. |
Example:
const Model = sequelize.define('model', attributes, {
defaultScope: {
where: {
username: 'dan'
},
limit: 12
},
scopes: {
isALie: {
where: {
stuff: 'cake'
}
},
complexFunction: function(email, accessLevel) {
return {
where: {
email: {
[Op.like]: email
},
access_level {
[Op.gte]: accessLevel
}
}
}
}
}
})
# As you have defined a default scope, every time you do Model.find, the default scope is appended to your query. Here's a couple of examples:
Model.findAll() // WHERE username = 'dan'
Model.findAll({ where: { age: { [Op.gt]: 12 } } }) // WHERE age > 12 AND username = 'dan'
Model.scope({ method: ['complexFunction', 'dan@sequelize.com', 42]}).findAll()
// WHERE email like 'dan@sequelize.com%' AND access_level >= 42
public static sum(field: string, options: Object): Promise<number> source
Find the sum of field
See:
- Model.aggregate for options
public static sync(options: Object): Promise<Model> source
Sync this Model to the DB, that is create the table.
Params:
Name | Type | Attribute | Description |
options | Object |
|
sync options |
See:
- Sequelize#sync for options
public static truncate(options: Object): Promise source
Truncate all instances of the model. This is a convenient method for Model.destroy({ truncate: true }).
Params:
Name | Type | Attribute | Description |
options | Object |
|
The options passed to Model.destroy in addition to truncate |
options.cascade | boolean | Function |
|
Truncates all tables that have foreign-key references to the named table, or to any tables added to the group due to CASCADE. |
options.restartIdentity | boolean |
|
Automatically restart sequences owned by columns of the truncated table. |
options.transaction | Transaction |
|
Transaction to run query under |
options.logging | boolean | Function |
|
A function that logs sql queries, or false for no logging |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
See:
- Model.destroy for more information
public static update(values: Object, options: Object): Promise<Array<number, number>> source
Update multiple instances that match the where options.
Params:
Name | Type | Attribute | Description |
values | Object | hash of values to update |
|
options | Object | update options |
|
options.where | Object | Options to describe the scope of the search. |
|
options.paranoid | boolean |
|
If true, only non-deleted records will be updated. If false, both deleted and non-deleted records will be updated. Only applies if |
options.fields | Array |
|
Fields to update (defaults to all fields) |
options.validate | boolean |
|
Should each row be subject to validation before it is inserted. The whole insert will fail if one row fails validation |
options.hooks | boolean |
|
Run before / after bulk update hooks? |
options.sideEffects | boolean |
|
Whether or not to update the side effects of any virtual setters. |
options.individualHooks | boolean |
|
Run before / after update hooks?. If true, this will execute a SELECT followed by individual UPDATEs. A select is needed, because the row data needs to be passed to the hooks |
options.returning | boolean |
|
Return the affected rows (only for postgres) |
options.limit | number |
|
How many rows to update (only for mysql and mariadb, implemented as TOP(n) for MSSQL; for sqlite it is supported only when rowid is present) |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.transaction | Transaction |
|
Transaction to run query under |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
public static upsert(values: Object, options: Object): Promise<boolean> source
Insert or update a single row. An update will be executed if a row which matches the supplied values on either the primary key or a unique key is found. Note that the unique index must be defined in your sequelize model and not just in the table. Otherwise you may experience a unique constraint violation, because sequelize fails to identify the row that should be updated.
Implementation details:
- MySQL - Implemented as a single query
INSERT values ON DUPLICATE KEY UPDATE values
- PostgreSQL - Implemented as a temporary function with exception handling: INSERT EXCEPTION WHEN unique_constraint UPDATE
- SQLite - Implemented as two queries
INSERT; UPDATE
. This means that the update is executed regardless of whether the row already existed or not - MSSQL - Implemented as a single query using
MERGE
andWHEN (NOT) MATCHED THEN
Note that SQLite returns undefined for created, no matter if the row was created or updated. This is because SQLite always runs INSERT OR IGNORE + UPDATE, in a single query, so there is no way to know whether the row was inserted or not.
Params:
Name | Type | Attribute | Description |
values | Object | hash of values to upsert |
|
options | Object |
|
upsert options |
options.validate | boolean |
|
Run validations before the row is inserted |
options.fields | Array |
|
The fields to insert / update. Defaults to all changed fields |
options.hooks | boolean |
|
Run before / after upsert hooks? |
options.returning | boolean |
|
Append RETURNING * to get back auto generated values (Postgres only) |
options.transaction | Transaction |
|
Transaction to run query under |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.benchmark | boolean |
|
Pass query execution time in milliseconds as second argument to logging function (options.logging). |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
Public Constructors
public constructor(values: Object, options: Object) source
Builds a new model instance.
Params:
Name | Type | Attribute | Description |
values | Object |
|
an object of key value pairs |
options | Object |
|
instance construction options |
options.raw | boolean |
|
If set to true, values will ignore field and virtual setters. |
options.isNewRecord | boolean |
|
Is this a new record |
options.include | Array |
|
an array of include options - Used to build prefetched/included model instances. See |
Public Members
Public Methods
public changed(key: string, value: any): boolean | Array source
If changed is called with a string it will return a boolean indicating whether the value of that key in dataValues
is different from the value in _previousDataValues
.
If changed is called without an argument, it will return an array of keys that have changed.
If changed is called without an argument and no keys have changed, it will return false
.
Params:
Name | Type | Attribute | Description |
key | string |
|
key to check or change status of |
value | any |
|
value to set |
public decrement(fields: string | Array | Object, options: Object): Promise source
Decrement the value of one or more columns. This is done in the database, which means it does not use the values currently stored on the Instance. The decrement is done using a
SET column = column - X
query. The updated instance will be returned by default in Postgres. However, in other dialects, you will need to do a reload to get the new values.
Params:
Name | Type | Attribute | Description |
fields | string | Array | Object | If a string is provided, that column is decremented by the value of |
|
options | Object |
|
decrement options |
options.by | number |
|
The number to decrement by |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
options.returning | boolean |
|
Append RETURNING * to get back auto generated values (Postgres only) |
Example:
instance.decrement('number') // decrement number by 1
instance.decrement(['number', 'count'], { by: 2 }) // decrement number and count by 2
// decrement answer by 42, and tries by 1.
// `by` is ignored, since each column has its own value
instance.decrement({ answer: 42, tries: 1}, { by: 2 })
See:
public destroy(options: Object): Promise source
Destroy the row corresponding to this instance. Depending on your setting for paranoid, the row will either be completely deleted, or have its deletedAt timestamp set to the current time.
Params:
Name | Type | Attribute | Description |
options | Object |
|
destroy options |
options.force | boolean |
|
If set to true, paranoid models will actually be deleted |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
public equals(other: Model): boolean source
Check whether this and other
Instance refer to the same row
Params:
Name | Type | Attribute | Description |
other | Model | Other instance to compare against |
public equalsOneOf(others: Array<Model>): boolean source
Check if this is equal to one of others
by calling equals
public get(key: string, options: Object): Object | any source
If no key is given, returns all values of the instance, also invoking virtual getters.
If key is given and a field or virtual getter is present for the key it will call that getter - else it will return the value for key.
Params:
Name | Type | Attribute | Description |
key | string |
|
key to get value of |
options | Object |
|
get options |
options.plain | boolean |
|
If set to true, included instances will be returned as plain objects |
options.raw | boolean |
|
If set to true, field and virtual setters will be ignored |
public getDataValue(key: string): any source
Get the value of the underlying data value
Params:
Name | Type | Attribute | Description |
key | string | key to look in instance data store |
Return:
any |
public increment(fields: string | Array | Object, options: Object): Promise<Model> since 4.0.0 source
Increment the value of one or more columns. This is done in the database, which means it does not use the values currently stored on the Instance. The increment is done using a
SET column = column + X
query. The updated instance will be returned by default in Postgres. However, in other dialects, you will need to do a reload to get the new values.
Params:
Name | Type | Attribute | Description |
fields | string | Array | Object | If a string is provided, that column is incremented by the value of |
|
options | Object |
|
options |
options.by | number |
|
The number to increment by |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
options.returning | boolean |
|
Append RETURNING * to get back auto generated values (Postgres only) |
Example:
instance.increment('number') // increment number by 1
instance.increment(['number', 'count'], { by: 2 }) // increment number and count by 2
// increment answer by 42, and tries by 1.
// `by` is ignored, since each column has its own value
instance.increment({ answer: 42, tries: 1}, { by: 2 })
See:
public isSoftDeleted(): boolean source
Helper method to determine if a instance is "soft deleted". This is
particularly useful if the implementer renamed the deletedAt
attribute
to something different. This method requires paranoid
to be enabled.
public previous(key: string): any | Array<any> source
Returns the previous value for key from _previousDataValues
.
If called without a key, returns the previous values for all values which have changed
Params:
Name | Type | Attribute | Description |
key | string |
|
key to get previous value of |
public reload(options: Object): Promise<Model> source
Refresh the current instance in-place, i.e. update the object with current data from the DB and return the same object.
This is different from doing a find(Instance.id)
, because that would create and return a new instance. With this method,
all references to the Instance are updated with the new data and no new objects are created.
See:
public restore(options: Object): Promise source
Restore the row corresponding to this instance. Only available for paranoid models.
Params:
Name | Type | Attribute | Description |
options | Object |
|
restore options |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
public save(options: Object): Promise<Model> source
Validate this instance, and if the validation passes, persist it to the database. It will only save changed fields, and do nothing if no fields have changed.
On success, the callback will be called with this instance. On validation error, the callback will be called with an instance of Sequelize.ValidationError
.
This error will have a property for each of the fields for which validation failed, with the error message for that field.
Params:
Name | Type | Attribute | Description |
options | Object |
|
save options |
options.fields | string[] |
|
An optional array of strings, representing database columns. If fields is provided, only those columns will be validated and saved. |
options.silent | boolean |
|
If true, the updatedAt timestamp will not be updated. |
options.validate | boolean |
|
If false, validations won't be run. |
options.hooks | boolean |
|
Run before and after create / update + validate hooks |
options.logging | Function |
|
A function that gets executed while running the query to log the sql. |
options.transaction | Transaction |
|
Transaction to run query under |
options.searchPath | string |
|
An optional parameter to specify the schema search_path (Postgres only) |
options.returning | boolean |
|
Append RETURNING * to get back auto generated values (Postgres only) |
public set(key: string | Object, value: any, options: Object): Model source
Set is used to update values on the instance (the sequelize representation of the instance that is, remember that nothing will be persisted before you actually call save
).
In its most basic form set
will update a value stored in the underlying dataValues
object. However, if a custom setter function is defined for the key, that function
will be called instead. To bypass the setter, you can pass raw: true
in the options object.
If set is called with an object, it will loop over the object, and call set recursively for each key, value pair. If you set raw to true, the underlying dataValues will either be set directly to the object passed, or used to extend dataValues, if dataValues already contain values.
When set is called, the previous value of the field is stored and sets a changed flag(see changed
).
Set can also be used to build instances for associations, if you have values for those. When using set with associations you need to make sure the property key matches the alias of the association while also making sure that the proper include options have been set (from .build() or .findOne())
If called with a dot.separated key on a JSON/JSONB attribute it will set the value nested and flag the entire object as changed.
Params:
Name | Type | Attribute | Description |
key | string | Object | key to set, it can be string or object. When string it will set that key, for object it will loop over all object properties nd set them. |
|
value | any | value to set |
|
options | Object |
|
set options |
options.raw | boolean |
|
If set to true, field and virtual setters will be ignored |
options.reset | boolean |
|
Clear all previously set data values |
See:
- Model.findAll for more information about includes
public setDataValue(key: string, value: any) source
Update the underlying data value
Params:
Name | Type | Attribute | Description |
key | string | key to set in instance data store |
|
value | any | new value for given key |
public toJSON(): Object source
Convert the instance to a JSON representation.
Proxies to calling get
with no keys.
This means get all values gotten from the DB, and apply all custom getters.
See:
public update(values: Object, options: Object): Promise<Model> source
This is the same as calling set
and then calling save
but it only saves the
exact values passed to it, making it more atomic and safer.
See:
public validate(options: Object): Promise source
Validate the attributes of this instance according to validation rules set in the model definition.
The promise fulfills if and only if validation successful; otherwise it rejects an Error instance containing { field name : [error msgs] } entries.
Params:
Name | Type | Attribute | Description |
options | Object |
|
Options that are passed to the validator |
options.skip | Array |
|
An array of strings. All properties that are in this array will not be validated |
options.fields | Array |
|
An array of strings. Only the properties that are in this array will be validated |
options.hooks | boolean |
|
Run before and after validate hooks |