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 # Extra Jira information of the Precondition Issue. 24 # 25 # Arguments 26 # fields: list of the fields to be displayed. 27 # Check the field 'fields' of this Jira endpoint for more information. 28 String]): JSON ( : [ 29 30 # Date when the precondition was last modified. 31 String : 32 33 # Test Repository folder of the Precondition. 34 Folder : 35 36 }