OBJECT

TechScreen

link GraphQL Schema definition

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

link Required by

This element is not required by anyone