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