applicationLibraryQuestionSearch
QUERY

Searches SEEK's library of application screening questions.A maximum of 10 application questions can be returned.This query accepts browser tokens that include the query:application-library-question-suggestions scope.

Arguments

Name
Description
keywords* 
String!
The keywords to search SEEK's library of application questions with.
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.
schemeId* 
String!
The scheme ID of the suggested application questions.Currently, only seekAnz and seekAnzPublicTest are supported.
first 
Int
A non-negative limit to the number of questions to return.Defaults to 10.

Result

Name
Description
A question search result.

Sample

GraphQL
query ($keywords: String!, $positionProfile: ApplicationLibraryQuestionSearch_PositionProfileInput!, $schemeId: String!) {
  applicationLibraryQuestionSearch(
    keywords: $keywords
    positionProfile: $positionProfile
    schemeId: $schemeId
  ) {
    id {
      value
    }
  }
}