feat: user edit UI + admin UI improvements + fixes
This commit is contained in:
@@ -5,6 +5,7 @@ query {
|
||||
name
|
||||
email
|
||||
providerKey
|
||||
isSystem
|
||||
createdAt
|
||||
}
|
||||
}
|
||||
|
21
client/graph/admin/users/users-query-single.gql
Normal file
21
client/graph/admin/users/users-query-single.gql
Normal file
@@ -0,0 +1,21 @@
|
||||
query ($id: Int!) {
|
||||
users {
|
||||
single(id: $id) {
|
||||
id
|
||||
name
|
||||
email
|
||||
providerKey
|
||||
providerId
|
||||
location
|
||||
jobTitle
|
||||
timezone
|
||||
isSystem
|
||||
createdAt
|
||||
updatedAt
|
||||
groups {
|
||||
id
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user