Revenue Breakdown
Fields
Field
Type
Description
segmentCategory
String
Segment Category
segmentName
String
Segment Name
unitType
String
Currency or Units
value
Float
Amount of revenue
Query example
# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
revenueBreakdowns {
period {
periodType
endDate
}
values {
segmentCategory
segmentName
unitType
value
}
}
}
}
# variables
{ "domain": "meta.com" }
Last updated
Was this helpful?