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 |
|---|---|
JobCategorySuggestionPositionProfileInput! | 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. |
String! | The scheme ID of the suggested job categories.Currently, only seekAnz and seekAnzPublicTest are supported. |
Int | A non-negative limit to the number of job categories to return.Defaults to 10. |
Result
| Name | Description |
|---|---|
[JobCategorySuggestionChoice!]! | A job category with information of the suggested choice. |
Sample
GraphQL
CopyGraphQL Explorer
query ($positionProfile: JobCategorySuggestionPositionProfileInput!, $schemeId: String!) {
jobCategorySuggestions(positionProfile: $positionProfile, schemeId: $schemeId) {
confidence
}
}