TypesObjects
ShareholderGraphNode
A node in a shareholder graph, representing an entity and its ownership details.
type ShareholderGraphNode {
id: ShareholderGraphNodeId!
indirectSharePercentage: SharePercentageInterval!
shareClasses: [ShareClass!]!
isBeneficialOwner: Boolean!
entity: EntityLike
}Fields
id ShareholderGraphNodeId! non-null scalar
ShareholderGraphNodeId!
The ID of the node.
indirectSharePercentage SharePercentageInterval! non-null object
SharePercentageInterval!
The indirect share held in the root company by the entity.
shareClasses [ShareClass!]! non-null object
[ShareClass!]!
Share classes held in the root company. These are propagated from the root node of the graph rather than coming from direct children of this node.
isBeneficialOwner Boolean! non-null scalar
Boolean!
Whether or not the entity is a beneficial owner in the root company.
entity EntityLike interface
EntityLike
The shareholder entity
Member Of
ShareholderGraph object