"""Create product query.""" query = ''' mutation( $accountId: Int, $accountType: String, $format: String, $genreId: Int, $imprint: String, $metaLanguage: String, $pLine: String, $productName: String!, $primaryArtists: [CreateArtistInput], $productCode: String, $productConfiguration: ProductConfiguration, $productHighlights: String!, $projectId: Int!, $subaccountId: Int, $subgenreId: Int, $upc: String, $deliveredVersion: String, $cLine: String, $specialInstructions: String, $notForDistribution: String ) { createProduct(input: { accountId: $accountId accountType: $accountType format: $format genreId: $genreId imprint: $imprint, metaLanguage: $metaLanguage, pLine: $pLine, primaryArtists: $primaryArtists, productCode: $productCode, productConfiguration: $productConfiguration, productHighlights: $productHighlights, productName: $productName, projectId: $projectId, subaccountId: $subaccountId, subgenreId: $subgenreId, upc: $upc, deliveredVersion: $deliveredVersion, cLine: $cLine, specialInstructions: $specialInstructions, notForDistribution: $notForDistribution }) { productId } } '''