mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
add score to search item
This commit is contained in:
parent
974c910846
commit
8e8db02633
3 changed files with 4 additions and 0 deletions
|
|
@ -2860,6 +2860,7 @@ export type SearchItem = {
|
|||
readingProgressTopPercent?: Maybe<Scalars['Float']>;
|
||||
recommendations?: Maybe<Array<Recommendation>>;
|
||||
savedAt: Scalars['Date'];
|
||||
score?: Maybe<Scalars['Float']>;
|
||||
shortId?: Maybe<Scalars['String']>;
|
||||
siteIcon?: Maybe<Scalars['String']>;
|
||||
siteName?: Maybe<Scalars['String']>;
|
||||
|
|
@ -6828,6 +6829,7 @@ export type SearchItemResolvers<ContextType = ResolverContext, ParentType extend
|
|||
readingProgressTopPercent?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
||||
recommendations?: Resolver<Maybe<Array<ResolversTypes['Recommendation']>>, ParentType, ContextType>;
|
||||
savedAt?: Resolver<ResolversTypes['Date'], ParentType, ContextType>;
|
||||
score?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
||||
shortId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
siteIcon?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
siteName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
|
|
|
|||
|
|
@ -2207,6 +2207,7 @@ type SearchItem {
|
|||
readingProgressTopPercent: Float
|
||||
recommendations: [Recommendation!]
|
||||
savedAt: Date!
|
||||
score: Float
|
||||
shortId: String
|
||||
siteIcon: String
|
||||
siteName: String
|
||||
|
|
|
|||
|
|
@ -1668,6 +1668,7 @@ const schema = gql`
|
|||
aiSummary: String
|
||||
directionality: DirectionalityType
|
||||
format: String
|
||||
score: Float
|
||||
}
|
||||
|
||||
type SearchItemEdge {
|
||||
|
|
|
|||
Loading…
Reference in a new issue