Defines relationships between entities, including foreign key relationships and many-to-many relationships through junction tables.

interface SkipEntityRelationshipInfo {
    entity: string;
    entityBaseView: string;
    entityID: string;
    entityKeyField: string;
    joinEntityInverseJoinField: string;
    joinEntityJoinField: string;
    joinView: string;
    relatedEntity: string;
    relatedEntityBaseView: string;
    relatedEntityID: string;
    relatedEntityJoinField: string;
    type: string;
}

Properties

entity: string
entityBaseView: string
entityID: string
entityKeyField: string
joinEntityInverseJoinField: string
joinEntityJoinField: string
joinView: string
relatedEntity: string
relatedEntityBaseView: string
relatedEntityID: string
relatedEntityJoinField: string
type: string