OBJECT
SkillAssessmentResult
For more details, see Query.skillAssessmentResults.
link GraphQL Schema definition
- type SkillAssessmentResult {
- # The primary identifier for the Skill Assessment.
- ID! :
- # The unique identifier for the User.
- String :
- # A User on Pluralsight is someone who is currently using or has ever used a
- # license on the plan.
- User :
- # The Pluralsight Plan associated with this Skill IQ.
- String :
- # Email of User.
- String @deprecated( reason: "Field is being removed. Please use the User field and select email instead." ) :
- # User first name.
- String @deprecated( reason: "Field is being removed. Please use the User field and select firstName instead." ) :
- # User last name.
- String @deprecated( reason: "Field is being removed. Please use the User field and select lastName instead." ) :
- # The date and time a User completed this Skill Assessment.
- DateTime :
- # The user's level according to the 3-tier system of Novice, Proficient, Expert.
- String @deprecated( reason: "Field is being replaced. Please use 'quintileLevel' instead." ) :
- # A more detailed skill level with 5 possible values 'Novice', 'Proficient
- # Emerging', 'Proficient Average', 'Proficient Above-Average', and 'Expert'.
- String @deprecated( reason: "Field renamed. Please use 'quintileLevel' instead." ) :
- # A more detailed skill level with 5 possible values:('novice',
- # 'proficient-emerging', 'proficient-average', 'proficient-above-average',
- # 'expert').
- String :
- # Total number of questions interacted with during this skill assessment. Total
- # represents correct, incorrect, skipped and timed out questions.
- Float @deprecated( reason: "Field is being removed and will not be replaced." ) :
- # The identifier of the Skill.
- String :
- # Type of measurement ('full-run' or 'retake').
- String :
- # Name given to this Skill.
- String :
- # Shortened name given to this Skill.
- String @deprecated( reason: "Skill names are not usually long, making a short version unneccessary. Field is being removed. Please use 'skillName' instead." ) :
- # If this record represents a retake, createdOn is the earliest date and time that
- # this assessment was available for the User to retake.
- DateTime :
- # The date and time this Skill assessment was started by the User.
- DateTime :
- # The session's run number, starting from 0. Multiple sessions can have the same
- # run number if one of them is a do-over.
- #
- # Note on Validation assessments:
- # If an assessment was taken first during beta (validation), and then later taken
- # again as a live assessment, the first live assessment will be runNumber of 1
- # because the validation run will be the runNumber 0 run.
- Int @deprecated( reason: "Field is being deprecated without a replacement." ) :
- # The status of the User's Assessment. Possible values are: 'question',
- # 'question-answered', 'question-timed-out', 'summary'.
- String @deprecated( reason: "Field is being removed without a replacement." ) :
- # The data in this field is not consistent and should not be relied upon.
- # List of reasons ('path' or 'milestone') why this Skill IQ was available for
- # retake.
- # 'path' means a user watched enough (60%) of a path level to retake this skill.
- # 'milestone' means enough time has passed (30 days) for this user to retake the
- # assessment.
- String] @deprecated( reason: "Paths are being deprecated so all retake reasons will be ['milestone']. Field is being removed without replacement." ) : [
- # Whether this Skill assessment represents their current SkillIq score or if it
- # has been superceded by a subsequent SkillIq.
- Boolean :
- }
link Require by
- QueryQueries are read only graphQL APIs that allow access to your data. The following advanced analytics APIs are available only to Enterprise plans: channelProgress, SkillAssessmentResult(s) and roleIqLearnerLevels.
- SkillAssessmentResultConnectionA type that describes the return type for the 'skillAssessmentResults' query. 'SkillAssessmentResult' data can then be accessed via nodes or edges.
- SkillAssessmentResultEdgeA type that describes an edge in the 'SkillAssessmentResultConnection'. Essentially, a 'SkillAssessmentResultEdge' is a wrapper object for 'SkillAssessmentResult'. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch 'SkillAssessmentResult' records after 'cursor'.