site-mutation-save-config.gql 761 B

123456789101112131415161718192021222324252627282930313233343536
  1. mutation (
  2. $host: String!
  3. $title: String!
  4. $description: String!
  5. $robots: [String]!
  6. $ga: String!
  7. $company: String!
  8. $hasLogo: Boolean!
  9. $logoIsSquare: Boolean!
  10. $featurePageRatings: Boolean!
  11. $featurePageComments: Boolean!
  12. $featurePersonalWikis: Boolean!
  13. ) {
  14. site {
  15. updateConfig(
  16. host: $host,
  17. title: $title,
  18. description: $description,
  19. robots: $robots,
  20. ga: $ga,
  21. company: $company,
  22. hasLogo: $hasLogo,
  23. logoIsSquare: $logoIsSquare,
  24. featurePageRatings: $featurePageRatings,
  25. featurePageComments: $featurePageComments,
  26. featurePersonalWikis: $featurePersonalWikis
  27. ) {
  28. responseResult {
  29. succeeded
  30. errorCode
  31. slug
  32. message
  33. }
  34. }
  35. }
  36. }