For the complete documentation index, see llms.txt. This page is also available as Markdown.

Salaries

The salary data reported for specific job categories at this company

Fields

Field

Type

Description

jobCategory

String

Job Category

medianSalary

Amount with currency

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        salaries {
            jobCategory
            medianSalary {
                value
                currencyIsoCode
            }
        }
    }
}

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

Last updated

Was this helpful?