upgrade schema, resolvers, panel added

This commit is contained in:
2025-05-16 09:23:48 +03:00
parent 8a60bec73a
commit 2d382be794
80 changed files with 8641 additions and 1100 deletions

View File

@@ -116,3 +116,25 @@ input CommunityInput {
desc: String
pic: String
}
# Auth inputs
input LoginCredentials {
email: String!
password: String!
}
input RegisterInput {
email: String!
password: String
name: String
}
input ChangePasswordInput {
oldPassword: String!
newPassword: String!
}
input ResetPasswordInput {
token: String!
newPassword: String!
}