INPUT_OBJECT
EditStandardTaskInput
link GraphQL Schema definition
1 input EditStandardTaskInput { 5 2 # The title of the question is the more user-friendly version of the question 3 # name. 4 : String 7 6 : String 9 8 : TestCasesInput 12 10 # The number of test cases that will be made visible to the test-taker. 11 : Int 16 13 # The list of all the languages that are allowed to be used in this question, 14 # or an empty list to allow all possible languages. 15 : [CodingLanguageName!] 24 17 # A list that describes customized execution time limits for one or more 18 # languages. 19 # If a language is not specified in the list, its execution time limit will be set 20 # to the default. 21 # In particular, you can pass an empty list to reset the time limits for all 22 # languages to the default. 23 : [LanguageTimeLimit!] 25 }