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.

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