OBJECT
TestVersion
link GraphQL Schema definition
1 type TestVersion { 2 3 # Number of the Test version. 4 : Int! 5 6 # Name of the Test version. 7 : String! 8 9 # If is the default Test version. 10 : Boolean! 11 12 # If is an archived Test version. 13 : Boolean! 14 15 # Test type of the Test version. 16 : TestType 17 18 # Step definition of the Test version. 19 : [Step] 20 21 # Unstructured definition of the Test version. 22 : String 23 24 # Gherkin definition of the Test version. 25 : String 26 27 # Gherkin type of the Test version. 28 # Possible values: 'scenario' or 'scenario_outline'. 29 : String 30 31 : Test! 32 33 # Arguments 34 # issueIds: the ids of the Preconditions. 35 # limit: the maximum amount of Preconditions 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 (: [String], : Int!, : Int): PreconditionResults 38 39 # List of Test Executions associated with the Test version. 40 # 41 # Arguments 42 # issueIds: the issue ids of the Test Executions 43 # limit: the maximum amount of Test Executions to be returned. The maximum is 100. 44 # start: the index of the first item to return in the page of results (page offset). 45 (: [String], : Int!, : Int): TestExecutionResults 46 47 # Arguments 48 # limit: the maximum amount of Test Runs to be returned. The maximum is 100. 49 # start: the index of the first item to return in the page of results (page offset). 50 (: Int!, : Int): TestRunResults 51 52 # Date when the Test version was last modified. 53 : String 54 55 }