Skip to content

2.6.0

Latest
Compare
Choose a tag to compare
@lepsalex lepsalex released this 22 Jan 17:28
· 91 commits to master since this release
c4499b5

!!! BREAKING CHANGES !!!

  • New GQL query response format to support better paging and sort (full details found in src/main/resources/schema.graphqls), this is only a top-level change, the Run and Task entities response remains unchanged :

Excerpt from Schema

type SearchResultInfo {
    contentCount: String!
    hasNextFrom: String!
    totalHits: String!
}

type RunsSearchResult {
    content: [Run!]
    info: SearchResultInfo!
}

New Features

  • New Aggregation query in GQL (currently only counts, plans for expansion in future releases):
type AggregationResult {
    totalHits: String!
}