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.

50 lines
1.3 KiB

  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. $securityIframe: Boolean!
  15. $securityReferrerPolicy: Boolean!
  16. $securityHSTS: Boolean!
  17. $securityHSTSDuration: Int!
  18. $securityCSP: Boolean!
  19. $securityCSPDirectives: String!
  20. ) {
  21. site {
  22. updateConfig(
  23. host: $host,
  24. title: $title,
  25. description: $description,
  26. robots: $robots,
  27. analyticsService: $analyticsService,
  28. analyticsId: $analyticsId,
  29. company: $company,
  30. hasLogo: $hasLogo,
  31. logoIsSquare: $logoIsSquare,
  32. featurePageRatings: $featurePageRatings,
  33. featurePageComments: $featurePageComments,
  34. featurePersonalWikis: $featurePersonalWikis,
  35. securityIframe: $securityIframe,
  36. securityReferrerPolicy: $securityReferrerPolicy,
  37. securityHSTS: $securityHSTS,
  38. securityHSTSDuration: $securityHSTSDuration,
  39. securityCSP: $securityCSP,
  40. securityCSPDirectives: $securityCSPDirectives
  41. ) {
  42. responseResult {
  43. succeeded
  44. errorCode
  45. slug
  46. message
  47. }
  48. }
  49. }
  50. }