13 lines
165 B
GraphQL
13 lines
165 B
GraphQL
query UserInfo($uid: ID!) {
|
|
infra {
|
|
userInfo(userUid: $uid) {
|
|
uid
|
|
displayName
|
|
email
|
|
isAdmin
|
|
photoURL
|
|
createdOn
|
|
}
|
|
}
|
|
}
|