This commit is contained in:
@@ -408,6 +408,18 @@ input UpdateProfileInput {
|
||||
app_data: Map
|
||||
}
|
||||
|
||||
input CreateUserInput {
|
||||
email: String
|
||||
password: String
|
||||
given_name: String
|
||||
family_name: String
|
||||
middle_name: String
|
||||
nickname: String
|
||||
phone_number: String
|
||||
picture: String
|
||||
}
|
||||
|
||||
|
||||
input UpdateUserInput {
|
||||
id: ID!
|
||||
email: String
|
||||
@@ -589,6 +601,7 @@ 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!
|
||||
|
Reference in New Issue
Block a user