feat: completed addition of new data field in TeamCollection

This commit is contained in:
Balu Babu
2023-12-01 12:59:34 +05:30
parent 85c42da31c
commit f13d00465d
7 changed files with 162 additions and 15 deletions

View File

@@ -12,6 +12,12 @@ export class TeamCollection {
})
title: string;
@Field({
description: 'JSON string representing the collection data',
nullable: true,
})
data: string;
@Field(() => ID, {
description: 'ID of the collection',
nullable: true,