diff --git a/src/server-extension/resolvers/top_collections.ts b/src/server-extension/resolvers/top_collections.ts index fe1a0d28..b3a54489 100644 --- a/src/server-extension/resolvers/top_collections.ts +++ b/src/server-extension/resolvers/top_collections.ts @@ -64,6 +64,9 @@ export class CollectionRow { @Field({ nullable: true }) category!: string + @Field({ nullable: true }) + verifiedAt!: string + @Field(() => Json, { nullable: true }) stats!: typeof JSON @@ -138,6 +141,7 @@ export class TopCollectionResolver { .select('collection.id AS collectionId') .addSelect('collection.metadata AS metadata') .addSelect('collection.stats AS stats') + .addSelect('collection.verified_at AS verifiedAt') .addSelect('collection.category AS category') if (timeFrame === Timeframe.ALL) { inBuilder