39 lines
		
	
	
		
			860 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			860 B
		
	
	
	
		
			GraphQL
		
	
	
	
	
	
mutation (
 | 
						|
  $host: String!
 | 
						|
  $title: String!
 | 
						|
  $description: String!
 | 
						|
  $robots: [String]!
 | 
						|
  $analyticsService: String!
 | 
						|
  $analyticsId: String!
 | 
						|
  $company: String!
 | 
						|
  $hasLogo: Boolean!
 | 
						|
  $logoIsSquare: Boolean!
 | 
						|
  $featurePageRatings: Boolean!
 | 
						|
  $featurePageComments: Boolean!
 | 
						|
  $featurePersonalWikis: Boolean!
 | 
						|
) {
 | 
						|
  site {
 | 
						|
    updateConfig(
 | 
						|
      host: $host,
 | 
						|
      title: $title,
 | 
						|
      description: $description,
 | 
						|
      robots: $robots,
 | 
						|
      analyticsService: $analyticsService,
 | 
						|
      analyticsId: $analyticsId,
 | 
						|
      company: $company,
 | 
						|
      hasLogo: $hasLogo,
 | 
						|
      logoIsSquare: $logoIsSquare,
 | 
						|
      featurePageRatings: $featurePageRatings,
 | 
						|
      featurePageComments: $featurePageComments,
 | 
						|
      featurePersonalWikis: $featurePersonalWikis
 | 
						|
    ) {
 | 
						|
      responseResult {
 | 
						|
        succeeded
 | 
						|
        errorCode
 | 
						|
        slug
 | 
						|
        message
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 |