applicationQuestionnaire
QUERY

An application questionnaire with the given id.Questionnaires can be associated with a PositionProfile.This query accepts browser tokens that include the query:application-questionnaires scope.

Arguments

Name
Description
The value of ApplicationQuestionnaire.id for the requested object.

Result

Name
Description
A set of questions presented to a candidate during an application.This can be associated with one or more PositionProfiles when they are created.

Sample

GraphQL
query ($id: String!) {
  applicationQuestionnaire(id: $id) {
    id {
      value
    }
  }
}