"""Update product query.""" query = ''' mutation( $accountId: Int, $accountType: String, $artistId: Int, $cLine: String, $description: String, $format: String, $genreId: Int, $imprint: String, $manufacturerUpc: String, $metaLanguage: String, $notForDistribution: String, $pLine: String, $previewable: String, $primaryArtists: [CreateArtistInput], $productCode: String, $productConfiguration: ProductConfiguration, $productHighlights: String, $productId: Int!, $productName: String, $projectCode: String, $projectId: String, $specialInstructions: String, $subgenreId: Int, $vendorReleaseIdentifier: String, $deliveredVersion: String ) { updateProduct(input: { accountId: $accountId accountType: $accountType artistId: $artistId cLine: $cLine description: $description format: $format genreId: $genreId imprint: $imprint manufacturerUpc: $manufacturerUpc metaLanguage: $metaLanguage notForDistribution: $notForDistribution pLine: $pLine previewable: $previewable primaryArtists: $primaryArtists productCode: $productCode productConfiguration: $productConfiguration productHighlights: $productHighlights productId: $productId productName: $productName projectCode: $projectCode projectId: $projectId specialInstructions: $specialInstructions subgenreId: $subgenreId vendorReleaseIdentifier: $vendorReleaseIdentifier deliveredVersion: $deliveredVersion }) { productId } } '''