mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:28 -06:00
22 lines
270 B
GraphQL
22 lines
270 B
GraphQL
query ($id: Int!) {
|
|
users {
|
|
single(id: $id) {
|
|
id
|
|
name
|
|
email
|
|
providerKey
|
|
providerId
|
|
location
|
|
jobTitle
|
|
timezone
|
|
isSystem
|
|
createdAt
|
|
updatedAt
|
|
groups {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
}
|
|
}
|