Type Alias Edge

type Edge = {
    id?: string;
    metadata?: { type?: string };
    relation?: string;
    source?: string;
    target?: string;
}
Index

Properties

id?: string

The index of edges. This is only used in the POST request.

metadata?: { type?: string }
relation?: string
source?: string

The id (QRI) of the source node on this edge.

target?: string

The id (QRI) of the target node on this edge.