INTERFACE

Test

A test defines a set of questions that a user may be invited to solve as part of an assessment.

link GraphQL Schema definition

1interface Test {
2
3# Test ID.
4id: ID!
5
6# The display name of the test.
7title: String!
8
9# The internal description of the test.
10internalDescription: String!
11
12# A message shown to users before they begin an assessment created from the test.
13introMessage: String!
14
15# A message shown to users after they finish an assessment created from the test.
16outroMessage: String!
17
18# The maximum time allowed to take the test, in milliseconds.
19duration: Float!
20
21}