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.

16 lines
208 B

5 years ago
  1. mutation (
  2. $flags: [SystemFlagInput]!
  3. ) {
  4. system {
  5. updateFlags(
  6. flags: $flags
  7. ) {
  8. responseResult {
  9. succeeded
  10. errorCode
  11. slug
  12. message
  13. }
  14. }
  15. }
  16. }