OBJECT
ExpandedTest
Expaded test issue type
link GraphQL Schema definition
1 type ExpandedTest { 2 3 # Issue id of the Test issue. 4 String : 5 6 # Project id of the Test issue. 7 String : 8 9 # Test type of the Test issue. 10 TestType : 11 12 # Unstructured definition of the Test issue. 13 String : 14 15 # Gherkin definition of the Test issue. 16 String : 17 18 # Test Repository folder of the Test. 19 Folder : 20 21 # Gherkin type of the Test issue. 22 # Possible values: 'scenario' or 'scenario_outline'. 23 String : 24 25 # List of Precondition associated with the Test issue. 26 # 27 # Arguments 28 # issueIds: the ids of the Preconditions. 29 # limit: the maximum amount of Preconditions to be returned. The maximum is 100. 30 # start: the index of the first item to return in the page of results (page offset). 31 String], : Int!, : Int): PreconditionResults ( : [ 32 33 # List of Test Sets associated with the Test issue. 34 # 35 # Arguments 36 # issueIds: the issue ids of the Test Sets 37 # limit: the maximum amount of Test Sets to be returned. The maximum is 100. 38 # start: the index of the first item to return in the page of results (page offset). 39 String], : Int!, : Int): TestSetResults ( : [ 40 41 # List of Test Plans associated with the Test issue. 42 # 43 # Arguments 44 # issueIds: the issue ids of the Test Plans 45 # limit: the maximum amount of Test Plans to be returned. The maximum is 100. 46 # start: the index of the first item to return in the page of results (page offset). 47 String], : Int!, : Int): TestPlanResults ( : [ 48 49 # List of Test Executions associated with the Test issue. 50 # 51 # Arguments 52 # issueIds: the issue ids of the Test Executions 53 # limit: the maximum amount of Test Executions to be returned. The maximum is 100. 54 # start: the index of the first item to return in the page of results (page offset). 55 String], : Int!, : Int): TestExecutionResults ( : [ 56 57 # List of Test Runs for the Test issue 58 # 59 # Arguments 60 # limit: the maximum amount of Test Runs to be returned. The maximum is 100. 61 # start: the index of the first item to return in the page of results (page offset). 62 Int!, : Int): TestRunResults ( : 63 64 # Extra Jira information of the Test issue. 65 # 66 # Arguments 67 # fields: List of the fields to be displayed. 68 # Check the field 'fields' of this Jira endpoint for more information. 69 String]): JSON! ( : [ 70 71 # Status of the Test. This status can be calculated based on latest status, version or Test Plan. 72 # 73 # Arguments 74 # environment: the environment for which to calculate the for status. 75 # isFinal: whether the final statuses has precedence over non-final. 76 # version: the version name for which to calculate the status for. 77 # testPlan: the Test Plan id for which to calculate the status for. 78 String, : Boolean, : String, : String): TestStatusType ( : 79 80 # Date when the test was last modified. 81 String : 82 83 # Expanded step definition of the test. 84 ExpandedStep] : [ 85 86 # Warnings generated while expanding the test steps. 87 String] : [ 88 89 }