PropertyGraph
public protocol PropertyGraph : GraphProtocol
A PropertyGraph stores additional information along with the graph structure.
-
The extra information associated with each vertex.
Declaration
Swift
associatedtype Vertex -
The extra information associated with each edge.
Declaration
Swift
associatedtype Edge -
Access information associated with a given
VertexId.Declaration
Swift
subscript(vertex vertex: VertexId) -> Vertex { get set } -
Access information associated with a given
EdgeId.Declaration
Swift
subscript(edge edge: EdgeId) -> Edge { get set }
View on GitHub
PropertyGraph Protocol Reference