We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b09604 commit a8e10c2Copy full SHA for a8e10c2
api/src/unraid-api/graph/resolvers/disks/disks.model.ts
@@ -59,11 +59,7 @@ export class DiskPartition {
59
}
60
61
@ObjectType({ implements: () => Node })
62
-export class Disk implements Node {
63
- @Field(() => PrefixedID, { description: 'The unique identifier of the disk' })
64
- @IsString()
65
- id!: string;
66
-
+export class Disk extends Node {
67
@Field(() => String, { description: 'The device path of the disk (e.g. /dev/sdb)' })
68
@IsString()
69
device!: string;
0 commit comments