Finished backend sql query and gql resolve

This commit is contained in:
Christoph Kluge
2023-12-05 11:59:01 +01:00
parent 9bc36152d9
commit b5b355c16c
5 changed files with 445 additions and 107 deletions

View File

@@ -288,7 +288,14 @@ type HistoPoint {
type MetricHistoPoints {
metric: String!
data: [HistoPoint!]
data: [MetricHistoPoint!]
}
type MetricHistoPoint {
min: Int!
max: Int!
count: Int!
bin: Int!
}
type JobsStatistics {