OBJECT
TestRun
Test Run type
link GraphQL Schema definition
1 type TestRun { 2 3 # Id of the Test Run. 4 : String 5 6 # Status of the Test Run. 7 : Status 8 9 # Generic definition of the Test issue. 10 : String 11 12 # Cucumber definition of the Test issue. 13 : String 14 15 # Cucumber Type definition of the Test Run. 16 : String 17 18 # Comment definition of the Test Run. 19 : String 20 21 # Started On date of the Test Run. 22 : String 23 24 # Evidence of the Test Run. 25 : [Evidence] 26 27 # Defects of the Test Run. 28 : [String] 29 30 # Step definition of the Test Run. 31 : [TestRunStep] 32 33 # Examples of the Test Run. 34 : [Example] 35 36 # Results of the Test Run. 37 : [Result] 38 39 # Test Type of the Test Run. 40 : TestType 41 42 # User's account id that executed the Test Run. 43 : String 44 45 # User's account id assigned to the Test Run. This is user assigned to the Test Run, not taking into account the assignee of the test execution. 46 : String 47 48 # Finished On date of the Test Run. 49 : String 50 51 # Preconditions of the Test Run. 52 # 53 # Arguments 54 # limit: the maximum amount of Preconditions to be returned. The maximum is 100. 55 # start: the index of the first item to return in the page of results (page offset). 56 (: Int!, : Int): TestRunPreconditionResults 57 58 # Test of the Test Run. 59 : Test 60 61 # Test version of the Test Run. 62 : TestVersion 63 64 # Test Execution of the Test Run. 65 : TestExecution 66 67 # Date when the test run was last modified. 68 : String 69 70 # Custom Fields of the Test Run. 71 : [TestRunCustomFieldValue] 72 73 # Parameters of the Test Run. 74 : [TestRunParameter] 75 76 # Iterations of the Test Run. 77 # 78 # Arguments 79 # limit: the maximum amount of iterations to be returned. The maximum is 100. 80 # start: the index of the first item to return in the page of results (page offset). 81 (: Int!, : Int): TestRunIterationResults 82 83 }