Describes the direct relation(s) pointing to instances read through this view. This connection type is used to aid in discovery and documentation of the view.

interface ReverseDirectRelationConnection {
    connectionType: "single_reverse_direct_relation" | "multi_reverse_direct_relation";
    description?: string;
    name?: string;
    source: ViewReference;
    through: ThroughReference;
}

Properties

connectionType: "single_reverse_direct_relation" | "multi_reverse_direct_relation"

The type of connection. The single_reverse_direct_relation type is used to indicate that only a single direct relation is expected to exist. The multi_reverse_direct_relation type is used to indicate that multiple direct relations are expected to exist.

description?: string

Description of the content and suggested use for this property.

name?: string

Readable property name.

The node(s) containing the direct relation property can be read through the view specified in 'source'.

The view or container of the node containing the direct relation property.