You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
302 B

  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. isActive
  14. isVerified
  15. createdAt
  16. updatedAt
  17. groups {
  18. id
  19. name
  20. }
  21. }
  22. }
  23. }