Skip to content

Commit 24b075a

Browse files
committed
feat(allowlist): add optional ID field to AllowlistRecord type definition
1 parent 9868634 commit 24b075a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/graphql/schemas/typeDefs/allowlistRecordTypeDefs.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ import { Hypercert } from "./hypercertTypeDefs.js";
88
simpleResolvers: true,
99
})
1010
export class AllowlistRecord {
11+
@Field({
12+
nullable: true,
13+
description: "The ID of the allow list record",
14+
})
15+
id?: string;
1116
@Field({
1217
nullable: true,
1318
description: "The hypercert ID the claimable fraction belongs to",

0 commit comments

Comments
 (0)