modification id for user
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
mutation CreateUser(
|
||||
$id: UUID!, # Firebase UID
|
||||
$id: String!, # Firebase UID
|
||||
$email: String!,
|
||||
$fullName: String!,
|
||||
$role: UserBaseRole!,
|
||||
@@ -17,7 +17,7 @@ mutation CreateUser(
|
||||
}
|
||||
|
||||
mutation UpdateUser(
|
||||
$id: UUID!,
|
||||
$id: String!,
|
||||
$email: String,
|
||||
$fullName: String,
|
||||
$role: UserBaseRole,
|
||||
@@ -35,7 +35,7 @@ mutation UpdateUser(
|
||||
}
|
||||
|
||||
mutation DeleteUser(
|
||||
$id: UUID!
|
||||
$id: String!
|
||||
) @auth(level: USER) {
|
||||
user_delete(id: $id)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user