diff --git a/packages/api/src/generated/graphql.ts b/packages/api/src/generated/graphql.ts index 1860ef85a..7a259576f 100644 --- a/packages/api/src/generated/graphql.ts +++ b/packages/api/src/generated/graphql.ts @@ -2268,6 +2268,7 @@ export enum SearchErrorCode { export type SearchItem = { __typename?: 'SearchItem'; annotation?: Maybe; + archivedAt?: Maybe; author?: Maybe; content?: Maybe; contentReader: ContentReader; @@ -5433,6 +5434,7 @@ export type SearchErrorResolvers = { annotation?: Resolver, ParentType, ContextType>; + archivedAt?: Resolver, ParentType, ContextType>; author?: Resolver, ParentType, ContextType>; content?: Resolver, ParentType, ContextType>; contentReader?: Resolver; diff --git a/packages/api/src/generated/schema.graphql b/packages/api/src/generated/schema.graphql index 285acdae4..ab629b0c8 100644 --- a/packages/api/src/generated/schema.graphql +++ b/packages/api/src/generated/schema.graphql @@ -1660,6 +1660,7 @@ enum SearchErrorCode { type SearchItem { annotation: String + archivedAt: Date author: String content: String contentReader: ContentReader! diff --git a/packages/api/src/schema.ts b/packages/api/src/schema.ts index f88a71d54..34943c903 100755 --- a/packages/api/src/schema.ts +++ b/packages/api/src/schema.ts @@ -1586,6 +1586,7 @@ const schema = gql` recommendations: [Recommendation!] wordsCount: Int content: String + archivedAt: Date } type SearchItemEdge {