mongoloquent
    Preparing search index...

    Interface IRelationshipBelongsToMany

    interface IRelationshipBelongsToMany {
        alias: string;
        foreignPivotKey: string;
        model: Model;
        nested?: string[];
        options: IRelationshipOptions;
        parentKey: string;
        pivotModel: Model;
        relatedKey: string;
        relatedModel: Model;
        relatedPivotKey: string;
        type: belongsToMany;
    }
    Index

    Properties

    alias: string
    foreignPivotKey: string
    model: Model
    nested?: string[]
    parentKey: string
    pivotModel: Model
    relatedKey: string
    relatedModel: Model
    relatedPivotKey: string