You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: api/generated-schema.graphql
+25-23Lines changed: 25 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -84,7 +84,7 @@ type ArrayDisk implements Node {
84
84
device: String
85
85
86
86
"""(KB) Disk Size total"""
87
-
size: Long
87
+
size: BigInt
88
88
status: ArrayDiskStatus
89
89
90
90
"""Is the disk a HDD or SSD."""
@@ -96,26 +96,26 @@ type ArrayDisk implements Node {
96
96
"""
97
97
Count of I/O read requests sent to the device I/O drivers. These statistics may be cleared at any time.
98
98
"""
99
-
numReads: Long
99
+
numReads: BigInt
100
100
101
101
"""
102
102
Count of I/O writes requests sent to the device I/O drivers. These statistics may be cleared at any time.
103
103
"""
104
-
numWrites: Long
104
+
numWrites: BigInt
105
105
106
106
"""
107
107
Number of unrecoverable errors reported by the device I/O drivers. Missing data due to unrecoverable array read errors is filled in on-the-fly using parity reconstruct (and we attempt to write this data back to the sector(s) which failed). Any unrecoverable write error results in disabling the disk.
108
108
"""
109
-
numErrors: Long
109
+
numErrors: BigInt
110
110
111
111
"""(KB) Total Size of the FS (Not present on Parity type drive)"""
112
-
fsSize: Long
112
+
fsSize: BigInt
113
113
114
114
"""(KB) Free Size on the FS (Not present on Parity type drive)"""
115
-
fsFree: Long
115
+
fsFree: BigInt
116
116
117
117
"""(KB) Used Size on the FS (Not present on Parity type drive)"""
118
-
fsUsed: Long
118
+
fsUsed: BigInt
119
119
exportable: Boolean
120
120
121
121
"""Type of Disk - used to differentiate Cache / Flash / Array / Parity"""
@@ -145,8 +145,10 @@ interface Node {
145
145
id: PrefixedID!
146
146
}
147
147
148
-
"""The `Long` scalar type represents 52-bit integers"""
149
-
scalarLong
148
+
"""
149
+
The `BigInt` scalar type represents non-fractional signed whole numeric values.
150
+
"""
151
+
scalarBigInt
150
152
151
153
enumArrayDiskStatus {
152
154
DISK_NP
@@ -222,13 +224,13 @@ type Share implements Node {
222
224
name: String
223
225
224
226
"""(KB) Free space"""
225
-
free: Long
227
+
free: BigInt
226
228
227
229
"""(KB) Used Size"""
228
-
used: Long
230
+
used: BigInt
229
231
230
232
"""(KB) Total size"""
231
-
size: Long
233
+
size: BigInt
232
234
233
235
"""Disks that are included in this share"""
234
236
include: [String!]
@@ -1116,7 +1118,7 @@ enum Temperature {
1116
1118
1117
1119
typeMemoryLayoutimplementsNode {
1118
1120
id: PrefixedID!
1119
-
size: Int!
1121
+
size: BigInt!
1120
1122
bank: String
1121
1123
type: String
1122
1124
clockSpeed: Int
@@ -1131,16 +1133,16 @@ type MemoryLayout implements Node {
0 commit comments