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.

18 lines
255 B

  1. mutation ($name: String!) {
  2. groups {
  3. create(name: $name) {
  4. responseResult {
  5. succeeded
  6. errorCode
  7. slug
  8. message
  9. }
  10. group {
  11. id
  12. name
  13. createdAt
  14. updatedAt
  15. }
  16. }
  17. }
  18. }