Skip to content

Commit 9e4b6b4

Browse files
committedMar 18, 2025·
fix: change WorkloadResourceQuantity fields to be nullable
1 parent 5a8f9a6 commit 9e4b6b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎schema.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -6252,10 +6252,10 @@ enum WorkloadOrderField {
62526252
"""Resource quantities for a workload."""
62536253
type WorkloadResourceQuantity {
62546254
"""The number of CPU cores."""
6255-
cpu: Float!
6255+
cpu: Float
62566256

62576257
"""The amount of memory in bytes."""
6258-
memory: Int!
6258+
memory: Int
62596259
}
62606260

62616261
"""Interface for resources allocated to workloads."""

0 commit comments

Comments
 (0)
Please sign in to comment.