Job Categories

The summary statistics on the job listings data for this company based on how they are distributed into each functional category.

Fields

Field

Type

Description

category

String

Job category name

percentage

Float

Percentage representation for a category

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        jobCategories {
            category
            percentage
        }
    }
}

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

Last updated