Type Alias EntityEdgeBeta

EntityEdge: {
    from: Entity;
    relationship: Relationship;
    to: Entity;
}

Type representing an edge between two entities with a relationship.

Type declaration

  • Betafrom: Entity

    The starting entity of the edge.

  • Betarelationship: Relationship

    The relationship between the two entities.

  • Betato: Entity

    The ending entity of the edge.