applicationLibraryQuestionSearchquery:application-library-question-suggestions scope.| Name | Description |
|---|---|
String! | The keywords to search SEEK's library of application questions with. |
ApplicationLibraryQuestionSearch_PositionProfileInput! | The partial position profile to search application questions.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 application questions.Currently, only seekAnz and seekAnzPublicTest are supported. |
Int | A non-negative limit to the number of questions to return.Defaults to 10. |
| Name | Description |
|---|---|
[ApplicationLibraryQuestionSearchResult!]! | A question search result. |
query ($keywords: String!, $positionProfile: ApplicationLibraryQuestionSearch_PositionProfileInput!, $schemeId: String!) {
applicationLibraryQuestionSearch(
keywords: $keywords
positionProfile: $positionProfile
schemeId: $schemeId
) {
id {
value
}
}
}