OBJECT
TestSet
Test Set type
link GraphQL Schema definition
1 type TestSet { 2 3 # Issue id of the Test Set Issue. 4 String : 5 6 # Project id of the Test Set Issue. 7 String : 8 9 # List of Tests associated with the Test Set Issue. 10 # 11 # Arguments 12 # issueIds: Ids of the Tests. 13 # limit: Maximum amount of tests to be returned. The maximum is 100. 14 # start: Index of the first item to return in the page of results (page offset). 15 String], : Int!, : Int): TestResults ( : [ 16 17 # List of Xray History results for the issue 18 # 19 # Arguments 20 # limit: the maximum amount of entries to be returned. The maximum is 100. 21 # start: the index of the first item to return in the page of results (page offset). 22 Int!, : Int): XrayHistoryResults ( : 23 24 # Extra Jira information of the Test Set Issue. 25 # 26 # Arguments 27 # fields: List of the fields to be displayed. 28 # Check the field 'fields' of this Jira endpoint for more information. 29 String]): JSON ( : [ 30 31 # Date when the test set was last modified. 32 String : 33 34 }