Operating Metrics (KPIs)
The sector-specific metrics or Key Performance Indicators for this company

Fields

Field
Type
Description
companySpecificKpi
String
Operating Metric Definition
footnotes
String
Footnotes from the filings, if any
source
​Source​
Source of operating metric
timePeriod
​Period​
Daily, Monthly, Quarterly, Semi-Annual or Annual
unitType
String
Currency or Units
value
​Money​
Amount with currency

Query example

1
# query
2
query findCompanyByDomain($domain: String!) {
3
company(domain: $domain) {
4
operatingMetrics {
5
companySpecificKpi
6
footnotes
7
source {
8
url
9
}
10
timePeriod {
11
periodType
12
endDate
13
}
14
15
unitType
16
value {
17
currencyIsoCode
18
value
19
}
20
}
21
}
22
}
23
​
24
​
25
# variables
26
{ "domain": "facebook.com" }
Copied!
Copy link