Relationship between entities

interface ERRelation {
    from: string;
    label?: "1-1" | "1-N" | "N-M";
    to: string;
}

Properties

Properties

from: string

Source table ID

label?: "1-1" | "1-N" | "N-M"

Relationship cardinality

to: string

Target table ID