Mixin BelongsToMany

    View code

    Many-to-many association with a join table.

    When the join table has additional attributes, these can be passed in the options object:

    All methods allow you to pass either a persisted instance, its primary key, or a mixture:

    1. });

    In the API reference below, replace Assocation(s) with the actual name of your association, e.g. for User.belongsToMany(Project) the getter will be user.getProjects().


    View code

    Get everything currently associated with this, using an optional where clause.

    Params:


    setAssociations([newAssociations], [options]) -> Promise

    Set the associated models by passing an array of instances or their primary keys. Everything that it not in the passed array will be un-associated.

    Params:

    NameTypeDescription
    [newAssociations]Array.<Instance | String | Number>An array of persisted instances or primary key of instances to associate with this. Pass or undefined to remove all associations.
    [options]ObjectOptions passed to through.findAll, bulkCreate, update and destroy. Can also hold additional attributes for the join table
    [options.validate]ObjectRun validation for the join model

    addAssociations([newAssociations], [options]) -> Promise

    Associate several persisted instances with this.

    Params:

    NameTypeDescription
    [newAssociations]Array.<Instance | String | Number>An array of persisted instances or primary key of instances to associate with this.
    [options]ObjectOptions passed to , bulkCreate and update. Can also hold additional attributes for the join table.
    [options.validate]ObjectRun validation for the join model.

    Associate a persisted instance with this.

    Params:


    createAssociation([values], [options]) -> Promise

    View code

    Create a new instance of the associated model and associate it with this.

    Params:

    NameTypeDescription
    [values]Object
    [options]ObjectOptions passed to create and add. Can also hold additional attributes for the join table

    removeAssociation([oldAssociated], [options]) -> Promise

    Un-associate the instance.

    Params:

    NameTypeDescription
    [oldAssociated]Instance | String | NumberCan be an Instance or its primary key
    [options]ObjectOptions passed to

    View code

    Un-associate several instances.

    Params:


    hasAssociation([instance], [options]) -> Promise

    Check if an instance is associated with this.

    Params:

    NameTypeDescription
    [instance]Instance | String | NumberCan be an Instance or its primary key
    [options]ObjectOptions passed to getAssociations

    hasAssociations([instances], [options]) -> Promise

    View code

    Check if all instances are associated with this.

    Params:

    NameTypeDescription
    [instances]Array.<Instance | String | Number>Can be an array of instances or their primary keys
    [options]ObjectOptions passed to getAssociations

    View code

    Count everything currently associated with this, using an optional where clause.


    This document is automatically generated based on source code comments. Please do not edit it directly, as your changes will be ignored. Please write on , open an issue or a create a pull request if you feel something can be improved. For help on how to write source code documentation see JSDoc and