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