OBJECT
Metric
Metric is a type that describes additional meta information, like Skill IQ distribution for the Priority.
link GraphQL Schema definition
- type Metric {
- # Refers to the id of project that those metrics belong to
- String! :
- # Number of distinct users that have taken a skill assessment for that project
- Int! :
- # The amount of time users have spent watching content associated with the project
- # in minutes
- Int! :
- # Number of distinct users associated with the project
- Int! :
- # Number of distinct users that have a retake for a skill assessment that is
- # associated to the project
- Int! :
- # The sum of the duration of all of the content for the project in minutes
- Int! :
- # Number of distinct users that have an average quintile_level of novice for the
- # given project
- Int! :
- # Number of distinct users that have an average quintile_level of
- # proficient-emerging for the given project
- Int! :
- # Number of distinct users that have an average quintile_level of
- # proficient-average for the given project
- Int! :
- # Number of distinct users that have an average quintile_level of
- # proficient-above-average for the given project
- Int! :
- # Number of distinct users that have an average quintile_level of expert for the
- # given project
- Int! :
- # The average of all of the initial assessment scores for all of the users
- # associated with the project
- Float! :
- # The average of all of the retake assessment scores for all of the users
- # associated with the project
- Float! :
- # Retake_average_skill_IQ - initial_to_retake_delta
- Float! :
- # Average of the difference in days between an initial score and the retake score
- # for all users that have retakes
- Int! :
- # Number of skill assessments in the project (NOT DISTINCT)
- Int! :
- # Number of courses in the project (NOT DISTINCT)
- Int! :
- # Number of channel groups in the project (NOT DISTINCT), will be 0 if the project
- # is a channel group or channel
- Int! :
- # Number of channels in the project (NOT DISTINCT), will be 0 if the project is a
- # channel
- Int! :
- # A string describing what type a project it is: Priority or ChannelGroup or
- # Channel
- String! :
- # DateTime indicating the event date
- DateTime! :
- }