Human Capital Metrics

Human capital metrics for this company - including gender diversity, ethnicity, etc.

Fields

Field

Type

Description

name

String

Human Capital Metric Definition

timePeriod

Daily, Monthly, Quarterly, Semi-Annual or Annual

unitType

String

Currency or Units

value

Int

Value

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        ethnicityMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
        
        genderMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
        rolesMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
    }
}

# variables
{ "domain": "meta.com" }

Last updated