Interface HasManyProps<T>

interface HasManyProps<T extends default> {
    foreignKey: ForeignEntityAttribute<T>;
    uniDirectional?: boolean;
}

Type Parameters

Properties

uniDirectional?: boolean

Specifies whether the relationship is unidirectional. When set to true, the relationship supports access patterns in only one direction, reducing denormalized data. This is useful when bidirectional access patterns are unnecessary.

false