This commit is contained in:
tonyrewin 2022-09-17 21:27:54 +03:00
parent 9f03a0e5cc
commit 77e06213b0

View File

@ -145,12 +145,11 @@ export type Mutation = {
refreshSession: AuthResult refreshSession: AuthResult
registerUser: AuthResult registerUser: AuthResult
removeAuthor: Result removeAuthor: Result
requestPasswordUpdate: Result sendLink: Result
unfollow: Result unfollow: Result
updateCollection: Result updateCollection: Result
updateCommunity: Result updateCommunity: Result
updateMessage: MessageResult updateMessage: MessageResult
updatePassword: Result
updateProfile: Result updateProfile: Result
updateReaction: Result updateReaction: Result
updateShout: Result updateShout: Result
@ -160,7 +159,7 @@ export type Mutation = {
} }
export type MutationConfirmEmailArgs = { export type MutationConfirmEmailArgs = {
token: Scalars['String'] code: Scalars['String']
} }
export type MutationCreateChatArgs = { export type MutationCreateChatArgs = {
@ -252,7 +251,7 @@ export type MutationRemoveAuthorArgs = {
shout: Scalars['String'] shout: Scalars['String']
} }
export type MutationRequestPasswordUpdateArgs = { export type MutationSendLinkArgs = {
email: Scalars['String'] email: Scalars['String']
} }
@ -275,11 +274,6 @@ export type MutationUpdateMessageArgs = {
id: Scalars['Int'] id: Scalars['Int']
} }
export type MutationUpdatePasswordArgs = {
password: Scalars['String']
token: Scalars['String']
}
export type MutationUpdateProfileArgs = { export type MutationUpdateProfileArgs = {
profile: ProfileInput profile: ProfileInput
} }
@ -356,6 +350,7 @@ export type Query = {
signIn: AuthResult signIn: AuthResult
signOut: AuthResult signOut: AuthResult
topAuthors: Array<Maybe<Author>> topAuthors: Array<Maybe<Author>>
topCommented: Array<Maybe<Shout>>
topMonth: Array<Maybe<Shout>> topMonth: Array<Maybe<Shout>>
topOverall: Array<Maybe<Shout>> topOverall: Array<Maybe<Shout>>
topViewed: Array<Maybe<Shout>> topViewed: Array<Maybe<Shout>>
@ -494,6 +489,11 @@ export type QueryTopAuthorsArgs = {
offset: Scalars['Int'] offset: Scalars['Int']
} }
export type QueryTopCommentedArgs = {
limit: Scalars['Int']
offset: Scalars['Int']
}
export type QueryTopMonthArgs = { export type QueryTopMonthArgs = {
limit: Scalars['Int'] limit: Scalars['Int']
offset: Scalars['Int'] offset: Scalars['Int']