2
0

users-query-single.gql 270 B

123456789101112131415161718192021
  1. query ($id: Int!) {
  2. users {
  3. single(id: $id) {
  4. id
  5. name
  6. email
  7. providerKey
  8. providerId
  9. location
  10. jobTitle
  11. timezone
  12. isSystem
  13. createdAt
  14. updatedAt
  15. groups {
  16. id
  17. name
  18. }
  19. }
  20. }
  21. }