Skip to content

Commit dad09e3

Browse files
committed
feat: Modify gql schemas
1 parent 26bd9ab commit dad09e3

38 files changed

+2893
-949
lines changed

docs/manager/graphql-reference/schema.graphql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ type ImageNode implements Node @key(fields: "id") {
630630
type: ImageType
631631
}
632632

633-
type KVPair {
633+
type KVPair @shareable {
634634
key: String
635635
value: String
636636
}
@@ -641,7 +641,7 @@ to support integers outside the range of a signed 32-bit integer.
641641
"""
642642
scalar BigInt
643643

644-
type ResourceLimit {
644+
type ResourceLimit @shareable {
645645
key: String
646646
min: String
647647
max: String
@@ -686,7 +686,7 @@ type AgentSummaryList implements PaginatedList {
686686
}
687687

688688
"""Added in 24.12.0."""
689-
type DomainNode implements Node {
689+
type DomainNode implements Node @key(fields: "id") {
690690
"""The ID of the object"""
691691
id: ID!
692692
name: String
@@ -917,7 +917,7 @@ type Domain {
917917
scaling_groups: [String]
918918
}
919919

920-
type GroupNode implements Node {
920+
type GroupNode implements Node @key(fields: "id") {
921921
"""The ID of the object"""
922922
id: ID!
923923

@@ -2243,7 +2243,7 @@ type ServiceConfigEdge {
22432243
cursor: String!
22442244
}
22452245

2246-
union _Entity = ImageNode | ScalingGroupNode | UserNode | VirtualFolderNode | EndpointToken | EndpointAutoScalingRuleNode
2246+
union _Entity = ImageNode | DomainNode | ScalingGroupNode | GroupNode | UserNode | VirtualFolderNode | EndpointToken | EndpointAutoScalingRuleNode
22472247

22482248
scalar _Any
22492249

0 commit comments

Comments
 (0)