OBJECT
TestExecution
Test Execution issue type
link GraphQL Schema definition
1 type TestExecution { 2 3 #   Id of the Test Execution issue. 4 : String  5 6 #   Project id of the Test Execution issue. 7 : String  8 9 #   Test Environments of the Test Execution. 10 : [String]  11 12 #   List of Tests associated with the Test Execution Issue. 13 #  14 # Arguments 15 #   issueIds: the issue ids of the Tests. 16 #   limit: the maximum amount of tests to be returned. The maximum is 100. 17 #   start: the index of the first item to return in the page of results (page offset). 18 (: [String], : Int!, : Int): TestResults  19 20 #   List of Test Plans associated with the Test Execution Issue. 21 #  22 # Arguments 23 #   issueIds: Ids of the Test Plans. 24 #   limit: the maximum amount of Test Plans to be returned. The maximum is 100. 25 #   start: the index of the first item to return in the page of results (page offset). 26 (: [String], : Int!, : Int): TestPlanResults  27 28 #   List of Test Runs for the Test Execution Issue. 29 #  30 # Arguments 31 #   limit: the maximum amount of tests to be returned. The maximum is 100. 32 #   start: the index of the first item to return in the page of results (page offset). 33 (: Int!, : Int): TestRunResults  34 35 #   List of Xray History results for the issue 36 #  37 # Arguments 38 #   limit: the maximum amount of entries to be returned. The maximum is 100. 39 #   start: the index of the first item to return in the page of results (page offset). 40 (: Int!, : Int): XrayHistoryResults  41 42 #   Extra Jira information of the Test Execution Issue. 43 #  44 # Arguments 45 #   fields: List of the fields to be displayed. 46 #   Check the field 'fields' of this Jira endpoint for more information. 47 (: [String]): JSON  48 49 #   Date when the test exec was last modified. 50 : String  51 52 }