OBJECT
CoverableIssueResults
Coverable Issue Results type
link GraphQL Schema definition
1 type CoverableIssueResults { 2 3 # Total amount of issues. 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 Coverable Issues to be returned. The maximum is 100. 10 : Int 11 12 # Test issue results. 13 : [CoverableIssue] 14 15 # Warnings generated if you have a invalid Coverable Issue 16 : [String] 17 18 }