We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd405d4 commit 5746b58Copy full SHA for 5746b58
libs/mongo-models/src/shared/content.object-type.ts
@@ -64,4 +64,7 @@ export class Content {
64
@Field({ description: 'The time at which the content was last updated.' })
65
updatedAt: number
66
67
+ @Field({ description: 'The time at which the metadata was last updated.' })
68
+ lastMetadataUpdate: number
69
+
70
}
libs/mongo-models/src/shared/content.schema.ts
@@ -14,6 +14,7 @@ export const contentSchema: object = {
14
synopsis: String,
15
createdAt: Number,
16
updatedAt: Number,
17
+ lastMetadataUpdate: Number,
18
runtime: {
19
full: {
20
type: String
0 commit comments