TypesObjects
ShareholderGraph
Represents a shareholder graph, which models the ownership structure of a company using nodes and edges.
type ShareholderGraph {
rootId: ShareholderGraphNodeId!
nodes: [ShareholderGraphNode!]!
edges: [ShareholderGraphEdge!]!
}Fields
rootId ShareholderGraphNodeId! non-null scalar
ShareholderGraphNodeId!
The id of the root node, i.e., the bottom-most node in the shareholder graph.
nodes [ShareholderGraphNode!]! non-null object
[ShareholderGraphNode!]!
The nodes in the shareholder graph. The nodes represent companies or individuals involved as shareholders.
edges [ShareholderGraphEdge!]! non-null object
[ShareholderGraphEdge!]!
The edges in the shareholder graph. Edges represent the ownership links between the nodes, showing the share each entity holds in other entities in the chart.
Member Of
Company object