Introduce adapted graphql schema

This commit is contained in:
Jan Eitzinger 2024-06-28 16:49:02 +02:00
parent 786770f56a
commit aede5f71ec
Signed by: moebiusband
GPG Key ID: 2574BA29B90D6DD5

View File

@ -27,12 +27,7 @@ type Job {
tags: [Tag!]! tags: [Tag!]!
resources: [Resource!]! resources: [Resource!]!
concurrentJobs: JobLinkResultList concurrentJobs: JobLinkResultList
footprint: [MetricValue]
memUsedMax: Float
flopsAnyAvg: Float
memBwAvg: Float
loadAvg: Float
metaData: Any metaData: Any
userData: User userData: User
} }
@ -64,6 +59,7 @@ type SubCluster {
} }
type MetricValue { type MetricValue {
name: String
unit: Unit! unit: Unit!
value: Float! value: Float!
} }