Investor
No description
type Investor {
name: String!
amount: Long!
ticket: Float!
currency: String!
date: String!
individual: Boolean!
companyid: ID
shareclass: String!
}
Fields
name ● String!
Investor name (full caps)
amount ● Long!
Amount of shares bought with this investment
ticket ● Float!
Total price paid for the shares
currency ● String!
Currency of the investment
date ● String!
Date of the investment
individual ● Boolean!
Whether this investor is an individual or an institutional investor
companyid ● ID
The company id of this investor, if the investor is institutional
shareclass ● String!
Share class bought with this investment
Example
{
"name": "INVESTOR NAME",
"amount": 1000,
"ticket": 1000,
"currency": "GBP",
"date": "2020-01-01",
"individual": true,
"companyid": "UK12345678",
"shareclass": "ORDINARY A"
}
Member Of
Company object ● CompanySearchResult object