applicationLibraryQuestionSuggestions
QUERY

An array of suggested application questions for the provided partial PositionProfile in decreasing order of relevance.A maximum of 10 application questions can be recommended.This query accepts browser tokens that include the query:application-library-question-suggestions scope.

Arguments

Name
Description
The partial position profile to suggest 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 suggested question component.

Sample

GraphQL
query ($positionProfile: ApplicationLibraryQuestionSuggestions_PositionProfileInput!, $schemeId: String!) {
  applicationLibraryQuestionSuggestions(
    positionProfile: $positionProfile
    schemeId: $schemeId
  ) {
    id {
      value
    }
  }
}