This content has been archived. It may contain guidance that is no longer relevant.
jobCategories query returns a superset of job categories supported across SEEK’s markets by default.
However, presenting this entire hierarchy for selection is suboptimal:- The hirer may see and be confused by overlapping categories.While our hierarchy aims to be mutually exclusive and collectively exhaustive where possible, this principle cannot hold at a global level when we account for regional differences such as governmental structures. For example, Australia has a
Government - Localentry and New Zealand has a distinctLocal Governmententry. - The performance of the job ad will be adversely impacted if the selected job category is not relevant to the region, as it will be less likely to appear in recommendations and search results.
positionProfile context when retrieving job categories:QueryVariablesResult
CopyGraphQL Explorer
query (
$positionProfile: JobCategories_PositionProfileInput!
$schemeId: String!
) {
jobCategories(
# Request results to be tailored to the position’s location.
positionProfile: $positionProfile
schemeId: $schemeId
) {
id {
value
}
name
children {
id {
value
}
name
}
}
}