Describes the edge(s) that are likely to exist to aid in discovery and documentation of the view. A listed edge is not required. i.e. It does not have to exist when included in this list. A connection has a max distance of one hop.

interface EdgeConnection {
    connectionType?: "single_edge_connection" | "multi_edge_connection";
    description?: string;
    direction?: "outwards" | "inwards";
    edgeSource?: ViewReference;
    name?: string;
    source: ViewReference;
    type: DirectRelationReference;
}

Properties

connectionType?: "single_edge_connection" | "multi_edge_connection"

The type of connection, either a single or multi edge connections are expected to exist.

description?: string

Description of the content and suggested use for this property.

direction?: "outwards" | "inwards"
edgeSource?: ViewReference

The edge(s) of this connection can be read through the view specified in 'edgeSource'.

name?: string

Readable property name.

The target node(s) of this connection can be read through the view specified in 'source'.

Reference to the node pointed to by the direct relation. The reference consists of a space and an external-id.