# Human Capital Metrics

### Fields

| Field      | Type                                                                        | Description                                      |
| ---------- | --------------------------------------------------------------------------- | ------------------------------------------------ |
| name       | String                                                                      | Human Capital Metric Definition                  |
| timePeriod | [Period](https://docs.craft.co/company-data-api/graphql-objects/untitled-3) | Daily, Monthly, Quarterly, Semi-Annual or Annual |
| unitType   | String                                                                      | Currency or Units                                |
| value      | Int                                                                         | Value                                            |

### Query example

```graphql
# 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" }
```
