Member Junction
    Preparing search index...

    A single-column foreign key within the MJ core schema: childTable.childCol references parentTable.parentRefCol. childNullable is whether the child column allows NULL (which decides SET NULL vs. DELETE during the walk).

    interface FkEdge {
        childCol: string;
        childNullable: boolean;
        childTable: string;
        parentRefCol: string;
        parentTable: string;
    }
    Index

    Properties

    childCol: string
    childNullable: boolean
    childTable: string
    parentRefCol: string
    parentTable: string