fix: standardize GraphQL schema UUID field types (#13550)
Closes [#1264](https://github.com/twentyhq/core-team-issues/issues/1264)
This commit is contained in:
+1
-1
@@ -19,6 +19,6 @@ export class DeletedWorkspaceMember {
|
||||
@Field(() => String, { nullable: true })
|
||||
avatarUrl: string | null;
|
||||
|
||||
@Field(() => String, { nullable: true })
|
||||
@Field(() => UUIDScalarType, { nullable: true })
|
||||
userWorkspaceId: string | null;
|
||||
}
|
||||
|
||||
@@ -56,6 +56,6 @@ export class WorkspaceMember {
|
||||
@Field(() => [RoleDTO], { nullable: true })
|
||||
roles?: RoleDTO[];
|
||||
|
||||
@Field(() => String, { nullable: true })
|
||||
@Field(() => UUIDScalarType, { nullable: true })
|
||||
userWorkspaceId?: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user