Strise Connect API Docs
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!]!
  warnings: [ShareholderGraphWarning!]!
}

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.

warnings [ShareholderGraphWarning!]! non-null object

[ShareholderGraphWarning!]! Warnings flagging potential completeness or data-quality issues in the shareholder graph (e.g. owners' shares not adding up to 100%, or the ownership chain ending in a company expected to have shareholders). Multiple warnings may be present; an empty list means none were detected.

Member Of

Company object ShareholderGraphChange object

On this page