reports page ui
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
mutation CreateUser(
|
||||
$id: String!, # Firebase UID
|
||||
$email: String,
|
||||
$phone: String,
|
||||
$fullName: String,
|
||||
$role: UserBaseRole!,
|
||||
$userRole: String,
|
||||
@@ -10,6 +11,7 @@ mutation CreateUser(
|
||||
data: {
|
||||
id: $id
|
||||
email: $email
|
||||
phone: $phone
|
||||
fullName: $fullName
|
||||
role: $role
|
||||
userRole: $userRole
|
||||
@@ -21,6 +23,7 @@ mutation CreateUser(
|
||||
mutation UpdateUser(
|
||||
$id: String!,
|
||||
$email: String,
|
||||
$phone: String,
|
||||
$fullName: String,
|
||||
$role: UserBaseRole,
|
||||
$userRole: String,
|
||||
@@ -30,6 +33,7 @@ mutation UpdateUser(
|
||||
id: $id,
|
||||
data: {
|
||||
email: $email
|
||||
phone: $phone
|
||||
fullName: $fullName
|
||||
role: $role
|
||||
userRole: $userRole
|
||||
|
||||
Reference in New Issue
Block a user