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.

38 lines
860 B

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