Update GraphQL schema. Refactor node repository

This commit is contained in:
2025-06-05 13:17:24 +02:00
parent 6f9737c2c2
commit 7466fe7a34
5 changed files with 1022 additions and 6 deletions

View File

@@ -301,7 +301,7 @@ type Query {
allocatedNodes(cluster: String!): [Count!]!
node(id: ID!): Node
nodes(filter: [NodeFilter!], order: OrderByInput): NodesResultList!
nodes(filter: [NodeFilter!], order: OrderByInput): NodeStateResultList!
nodeStats(filter: [NodeFilter!]): [NodeStats!]!
job(id: ID!): Job
@@ -459,7 +459,7 @@ input FloatRange {
to: Float!
}
type NodesResultList {
type NodeStateResultList {
items: [Node!]!
count: Int
}