OBJECT
TestVersionResults
Test version results type
link GraphQL Schema definition
1 type TestVersionResults { 2 3 # Total amount of Test versions. 4 : Int 5 6 # The index of the first item to return in the page of results (page offset). 7 : Int 8 9 # The maximum amount of Test versions to be returned. The maximum is 100. 10 : Int 11 12 # Test version results. 13 : [TestVersion] 14 15 }