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.

25 lines
317 B

  1. query ($id: Int!) {
  2. groups {
  3. single(id: $id) {
  4. id
  5. name
  6. isSystem
  7. permissions
  8. pageRules {
  9. id
  10. path
  11. roles
  12. match
  13. deny
  14. locales
  15. }
  16. users {
  17. id
  18. name
  19. email
  20. }
  21. createdAt
  22. updatedAt
  23. }
  24. }
  25. }