prorm API Reference
    Preparing search index...

    Interface EdgeModelDefinition

    An edge model: a relationship type connecting two node labels.

    interface EdgeModelDefinition {
        label: string;
        from: string;
        to: string;
        properties?: Record<string, GraphPropertyDefinition>;
    }
    Index
    label: string
    from: string
    to: string
    properties?: Record<string, GraphPropertyDefinition>