A node definition in a view.

interface NodeDefinition {
    allowLoopback?: boolean;
    allowVertexLoopback?: boolean;
    maxConnections?: number;
}

Hierarchy (view full)

Properties

allowLoopback?: boolean

Whether or not to allow edges from this vertex back to itself. Defaults to true.

allowVertexLoopback?: boolean

Whether or not to allow edges from a port back to the vertex it belongs to. Defaults to true.

maxConnections?: number

Optional connection limit. Defaults to 1. A value of -1 means there is no limit.