fix: workspace shouldn't be hidden in the output (#358)

This commit is contained in:
Jérémy M
2023-06-22 15:50:52 +02:00
committed by GitHub
parent 06acfb8aab
commit cd70209502
2 changed files with 2 additions and 2 deletions

View File

@ -28,6 +28,6 @@ export class WorkspaceMember {
@Field(() => User, { nullable: false })
user?: User;
@HideField()
@Field(() => Workspace, { nullable: false })
workspace?: Workspace;
}