jobCategorySuggestions
QUERY

An array of suggested job categories for the provided partial PositionProfile in decreasing order of relevance.A maximum of 10 job categories can be recommended.This query accepts browser tokens that include the query:ontologies scope.

Arguments

Name
Description
The partial position profile to suggest a job category for.This should include the same field values that will eventually be used to create or post the PositionProfile.
schemeId* 
String!
The scheme ID of the suggested job categories.Currently, only seekAnz and seekAnzPublicTest are supported.
first 
Int
A non-negative limit to the number of job categories to return.Defaults to 10.

Result

Name
Description
A job category with information of the suggested choice.

Sample

GraphQL
query ($positionProfile: JobCategorySuggestionPositionProfileInput!, $schemeId: String!) {
  jobCategorySuggestions(positionProfile: $positionProfile, schemeId: $schemeId) {
    confidence
  }
}