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.

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