OBJECT
CrAssessmentFormLevelStatistics
A CrAssessmentFormLevelStatistics contains statistics about the scores (from each user's first regular assessment session only) for a given form.
link GraphQL Schema definition
- type CrAssessmentFormLevelStatistics {
- # UUID for a specific form. Works as a primary key for this data.
- ID! :
- # Human readable form identifier, including version and taxonomy.
- String :
- # Unique count of users who took this form.
- Int :
- # Total count of times users first completed this form.
- Int :
- # Total count of questions in the test form.
- Int :
- # Lowest score achieved.
- Int :
- # Greatest score achieved.
- Int :
- # Test form KR20 reliability score.
- Float :
- # Mean of test form scores.
- Float :
- # Median of test form scores.
- Float :
- # Mode of test form scores.
- Float :
- # Standard deviation of test form scores.
- Float :
- # Variance of test form scores.
- Float :
- # Standard error of mean of test form scores.
- Float :
- # Standard error of measurement of test form scores.
- Float :
- # Skew of test form scores.
- Float :
- # Kurtosis of test form scores.
- Float :
- # Average time users spent on the test form in milliseconds.
- Float :
- # The percentage of users who took the form and passed.
- Float :
- # The date and time this entity was last updated.
- DateTime :
- }
link Require by
- CrAssessmentFormLevelStatisticsConnectionA type that describes the return type for the crAssessmentFormLevelStatistics query. CrAssessmentFormLevelStatistics can then be accessed via nodes or edges
- CrAssessmentFormLevelStatisticsEdgeA type that describes an edge in the CrAssessmentFormLevelStatisticsConnection. Essentially, a CrAssessmentFormLevelStatisticsEdge is a wrapper object for CrAssessmentFormLevelStatistics. The only addition is a cursor placed on each record that can be used in subsequent queries to fetch CrAssessmentFormLevelStatistics records after 'cursor'.