Comment on page
Salaries
The salary data reported for specific job categories at this company
Field | Type | Description |
jobCategory | String | Job Category |
medianSalary | Amount with currency |
# query
query findCompanyByDomain($domain: String!) {
company(domain: $domain) {
salaries {
jobCategory
medianSalary {
value
currencyIsoCode
}
}
}
}
# variables
{ "domain": "meta.com" }
Last modified 6mo ago