TypesObjects
PathConnection
Represents a connection between N entities, a path, where N = the number of edges + 1.
Example: If edges contains two entries, each entry will represent the relationship(s) between each subsequent entity (node) in the traversed path:
(queriedEntity)-[edges[0]]->(secondEntity)-[edges[1]]->(thirdEntity).
type PathConnection {
edges: [PathConnectionEdge!]!
}Fields
edges [PathConnectionEdge!]! non-null object
[PathConnectionEdge!]!
Edges representing the path.
Member Of
RiskFactor object