codegened
This commit is contained in:
parent
ff35862e02
commit
24634c5814
|
@ -355,6 +355,7 @@ export type Query = {
|
||||||
shoutsForFeed: Array<Maybe<Shout>>
|
shoutsForFeed: Array<Maybe<Shout>>
|
||||||
signIn: AuthResult
|
signIn: AuthResult
|
||||||
signOut: AuthResult
|
signOut: AuthResult
|
||||||
|
topAuthors: Array<Maybe<Author>>
|
||||||
topMonth: Array<Maybe<Shout>>
|
topMonth: Array<Maybe<Shout>>
|
||||||
topOverall: Array<Maybe<Shout>>
|
topOverall: Array<Maybe<Shout>>
|
||||||
topViewed: Array<Maybe<Shout>>
|
topViewed: Array<Maybe<Shout>>
|
||||||
|
@ -386,8 +387,8 @@ export type QueryGetCommunityArgs = {
|
||||||
|
|
||||||
export type QueryGetMessagesArgs = {
|
export type QueryGetMessagesArgs = {
|
||||||
chatId: Scalars['String']
|
chatId: Scalars['String']
|
||||||
limit: Scalars['Int']
|
page: Scalars['Int']
|
||||||
offset: Scalars['Int']
|
size: Scalars['Int']
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QueryGetShoutBySlugArgs = {
|
export type QueryGetShoutBySlugArgs = {
|
||||||
|
@ -429,8 +430,8 @@ export type QueryReactionsByShoutArgs = {
|
||||||
|
|
||||||
export type QueryReactionsForShoutsArgs = {
|
export type QueryReactionsForShoutsArgs = {
|
||||||
limit: Scalars['Int']
|
limit: Scalars['Int']
|
||||||
shouts: Array<InputMaybe<Scalars['String']>>
|
|
||||||
offset: Scalars['Int']
|
offset: Scalars['Int']
|
||||||
|
shouts: Array<InputMaybe<Scalars['String']>>
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QueryRecentAllArgs = {
|
export type QueryRecentAllArgs = {
|
||||||
|
@ -449,9 +450,9 @@ export type QueryRecentReactedArgs = {
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QuerySearchQueryArgs = {
|
export type QuerySearchQueryArgs = {
|
||||||
page?: InputMaybe<Scalars['Int']>
|
limit: Scalars['Int']
|
||||||
|
offset: Scalars['Int']
|
||||||
q?: InputMaybe<Scalars['String']>
|
q?: InputMaybe<Scalars['String']>
|
||||||
size?: InputMaybe<Scalars['Int']>
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QueryShoutsByAuthorsArgs = {
|
export type QueryShoutsByAuthorsArgs = {
|
||||||
|
@ -462,8 +463,8 @@ export type QueryShoutsByAuthorsArgs = {
|
||||||
|
|
||||||
export type QueryShoutsByCollectionArgs = {
|
export type QueryShoutsByCollectionArgs = {
|
||||||
collection: Scalars['String']
|
collection: Scalars['String']
|
||||||
page?: InputMaybe<Scalars['Int']>
|
limit: Scalars['Int']
|
||||||
size?: InputMaybe<Scalars['Int']>
|
offset: Scalars['Int']
|
||||||
}
|
}
|
||||||
|
|
||||||
export type QueryShoutsByCommunitiesArgs = {
|
export type QueryShoutsByCommunitiesArgs = {
|
||||||
|
@ -488,6 +489,11 @@ export type QuerySignInArgs = {
|
||||||
password?: InputMaybe<Scalars['String']>
|
password?: InputMaybe<Scalars['String']>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export type QueryTopAuthorsArgs = {
|
||||||
|
limit: Scalars['Int']
|
||||||
|
offset: Scalars['Int']
|
||||||
|
}
|
||||||
|
|
||||||
export type QueryTopMonthArgs = {
|
export type QueryTopMonthArgs = {
|
||||||
limit: Scalars['Int']
|
limit: Scalars['Int']
|
||||||
offset: Scalars['Int']
|
offset: Scalars['Int']
|
||||||
|
|
Loading…
Reference in New Issue
Block a user