Type alias EdgeAndVertex<TEdgeType, TVertexType>

EdgeAndVertex<TEdgeType, TVertexType>: {
    edge: TEdgeType;
    vertex: TVertexType;
}

The return type of connected vertices loaders.

Note that original vertex is not returned since it's most likely already known as a parent entity.

Type Parameters

Type declaration

  • edge: TEdgeType

    The edge connection parent (source) and related (destination) vertices.

  • vertex: TVertexType

    The related vertex.

Generated using TypeDoc