no-create-user

This commit is contained in:
2023-11-30 14:22:12 +03:00
parent 4b172892e5
commit e80a5d9d6d
5 changed files with 0 additions and 468 deletions

View File

@@ -424,22 +424,6 @@ input UpdateProfileInput {
app_data: Map
}
input CreateUserInput {
email: String
email_verified: Boolean
email_verified_at: Int64
password: String
given_name: String
family_name: String
middle_name: String
nickname: String
phone_number: String
picture: String
created_at: Int64
updated_at: Int64
}
input UpdateUserInput {
id: ID!
email: String
@@ -624,7 +608,6 @@ type Mutation {
resend_otp(params: ResendOTPRequest!): Response!
deactivate_account: Response!
# admin only apis
_create_user(params: CreateUserInput!): User!
_delete_user(params: DeleteUserInput!): Response!
_update_user(params: UpdateUserInput!): User!
_admin_signup(params: AdminSignupInput!): Response!