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
hirerId* 
String!
The identifier for the HiringOrganization that is searching for application questions.This is used to tailor search results to the organization's location.
keywords* 
String!
The keywords to search SEEK's library of application questions with.
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 ($hirerId: String!, $keywords: String!, $schemeId: String!) {
  applicationLibraryQuestionSearch(
    hirerId: $hirerId
    keywords: $keywords
    schemeId: $schemeId
  ) {
    id {
      value
    }
  }
}