INPUT_OBJECT

TaskSlotInput

A question slot represents a pool of similar questions. During a test session, exactly one question will be randomly chosen from each question slot.

link GraphQL Schema definition

1input TaskSlotInput {
4
2# The IDs of the questions that may be randomly selected from this slot.
3taskIds: [ID!]!
7
5# The languages available to use for a question selected from this slot.
6availableLanguages: [LanguageName!]
10
8# The testing tools available to use for a question selected from this slot.
9availableTestingTools: [TestingToolName!]
14
11# The maximum score that can be achieved by correctly solving a question from this
12# slot.
13score: Int
15}