fix: standardize GraphQL schema UUID field types (#13550)

Closes [#1264](https://github.com/twentyhq/core-team-issues/issues/1264)
This commit is contained in:
Abdul Rahman
2025-08-04 15:13:48 +05:30
committed by GitHub
parent d8ec2e3959
commit 01f25519f6
98 changed files with 590 additions and 478 deletions
@@ -33,7 +33,7 @@ export class BillingEntitlement {
@Column({ nullable: false, type: 'text' })
key: BillingEntitlementKey;
@Field()
@Field(() => UUIDScalarType)
@Column({ nullable: false, type: 'uuid' })
workspaceId: string;