static/v4/class/lib/associations/has-many.js~HasMany.html
publicclass| source
Association → HasMany
One-to-many association
In the API reference below, add the name of the association to the method, e.g. for User.hasMany(Project) the getter will be user.getProjects(). If the association is aliased, use the alias instead, e.g. User.hasMany(Project, { as: 'jobs' }) will be user.getJobs().
| Public Methods | | public |
add(newAssociation(s): Model[] | Model | string[] | string | number[] | number, options: Object): Promise
Associate one or more target rows with this.
| | | public |
count(options: Object): Promise<Integer>
Count everything currently associated with this, using an optional where clause.
| | | public |
create(values: Object, options: Object): Promise
Create a new instance of the associated model and associate it with this.
| | | public |
get(options: Object): Promise<Array<Model>>
Get everything currently associated with this, using an optional where clause.
| | | public |
has(instance(s): Model[] | Model | string[] | String | number[] | Number, options: Object): Promise
Check if one or more rows are associated with this.
| | | public |
remove(oldAssociatedInstance(s): Model[] | Model | String[] | string | Number[] | number, options: Object): Promise
Un-associate one or several target rows.
| | | public |
set(newAssociations: Array<Model|String|Number>, options: Object): Promise
Set the associated models by passing an array of persisted instances or their primary keys.
| |
| From class Association | | public |
associationType: string
The type of the association.
| | | public |
| | | public |
| |
Associate one or more target rows with this. This method accepts a Model / string / number to associate a single row, or a mixed array of Model / string / numbers to associate multiple rows.
| Name | Type | Attribute | Description | | newAssociation(s) | Model[] | Model | string[] | string | number[] | number |
| | | options | Object |
|
Options passed to target.update.
|
| Promise |
Count everything currently associated with this, using an optional where clause.
| Name | Type | Attribute | Description | | options | Object |
| | | options.where | Object |
|
An optional where clause to limit the associated models
| | options.scope | String | Boolean |
|
Apply a scope on the related model, or remove its default scope by passing false
|
| Promise<Integer> |
Create a new instance of the associated model and associate it with this.
| Name | Type | Attribute | Description | | values | Object |
| | | options | Object |
|
Options passed to target.create.
|
| Promise |
Get everything currently associated with this, using an optional where clause.
| Name | Type | Attribute | Description | | options | Object |
| | | options.where | Object |
|
An optional where clause to limit the associated models
| | options.scope | String | Boolean |
|
Apply a scope on the related model, or remove its default scope by passing false
| | options.schema | String |
|
Apply a schema on the related model
|
| Promise<Array<Model>> |
Check if one or more rows are associated with this.
| Name | Type | Attribute | Description | | instance(s) | Model[] | Model | string[] | String | number[] | Number |
| | | options | Object |
|
Options passed to getAssociations
|
| Promise |
Un-associate one or several target rows.
| Name | Type | Attribute | Description | | oldAssociatedInstance(s) | Model[] | Model | String[] | string | Number[] | number |
| | | options | Object |
|
Options passed to target.update
|
| Promise |
Set the associated models by passing an array of persisted instances or their primary keys. Everything that is not in the passed array will be un-associated
| Name | Type | Attribute | Description | | newAssociations | Array<Model|String|Number> |
|
An array of persisted instances or primary key of instances to associate with this. Pass null or undefined to remove all associations.
| | options | Object |
|
Options passed to target.findAll and update.
| | options.validate | Object |
|
Run validation for the join model
|
| Promise |