mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Add siteName in search result
This commit is contained in:
parent
76aef35423
commit
8f75c43658
3 changed files with 4 additions and 0 deletions
|
|
@ -1384,6 +1384,7 @@ export type SearchItem = {
|
|||
readingProgressAnchorIndex?: Maybe<Scalars['Int']>;
|
||||
readingProgressPercent?: Maybe<Scalars['Float']>;
|
||||
shortId?: Maybe<Scalars['String']>;
|
||||
siteName?: Maybe<Scalars['String']>;
|
||||
slug: Scalars['String'];
|
||||
state?: Maybe<ArticleSavingRequestStatus>;
|
||||
subscription?: Maybe<Scalars['String']>;
|
||||
|
|
@ -3384,6 +3385,7 @@ export type SearchItemResolvers<ContextType = ResolverContext, ParentType extend
|
|||
readingProgressAnchorIndex?: Resolver<Maybe<ResolversTypes['Int']>, ParentType, ContextType>;
|
||||
readingProgressPercent?: Resolver<Maybe<ResolversTypes['Float']>, ParentType, ContextType>;
|
||||
shortId?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
siteName?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
slug?: Resolver<ResolversTypes['String'], ParentType, ContextType>;
|
||||
state?: Resolver<Maybe<ResolversTypes['ArticleSavingRequestStatus']>, ParentType, ContextType>;
|
||||
subscription?: Resolver<Maybe<ResolversTypes['String']>, ParentType, ContextType>;
|
||||
|
|
|
|||
|
|
@ -991,6 +991,7 @@ type SearchItem {
|
|||
readingProgressAnchorIndex: Int
|
||||
readingProgressPercent: Float
|
||||
shortId: String
|
||||
siteName: String
|
||||
slug: String!
|
||||
state: ArticleSavingRequestStatus
|
||||
subscription: String
|
||||
|
|
|
|||
|
|
@ -1438,6 +1438,7 @@ const schema = gql`
|
|||
unsubMailTo: String
|
||||
unsubHttpUrl: String
|
||||
state: ArticleSavingRequestStatus
|
||||
siteName: String
|
||||
}
|
||||
|
||||
type SearchItemEdge {
|
||||
|
|
|
|||
Loading…
Reference in a new issue