The
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 - Local
entry and New Zealand has a distinctLocal Government
entry. - 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: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
}
}
}