diff --git a/packages/backend/src/graphql/types/index.ts b/packages/backend/src/graphql/types/index.ts index 2eafc19..5d32214 100644 --- a/packages/backend/src/graphql/types/index.ts +++ b/packages/backend/src/graphql/types/index.ts @@ -86,6 +86,7 @@ export const VideoModelType = builder.objectRef("VideoModel").implem artist_name: t.exposeString("artist_name", { nullable: true }), slug: t.exposeString("slug", { nullable: true }), avatar: t.exposeString("avatar", { nullable: true }), + description: t.exposeString("description", { nullable: true }), }), }); diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index 1c6ead1..110b718 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -40,6 +40,7 @@ export interface VideoModel { artist_name: string | null; slug: string | null; avatar: string | null; + description: string | null; } export interface VideoFile {