"""Queries.""" SAVE_VIDEO_SINGLE_PRODUCT = """ mutation ($data: SaveVideoSingleProductInput) { saveVideoSingleProduct(input: $data) { productId } } """ GET_VIDEO_CHANNELS = """ query($productId: Int!) { getAvailableVideoChannelsByProductId(productId: $productId) { channelName channelId } } """ GET_PRODUCT_BY_UPC = """ query($upc: String!) { productByUpc(upc: $upc) { specialInstructions project { projectId } productId vendorId subaccountId deliveredVersion version typeOfVideo genreId subgenreId notForDistribution productCode imprint specialInstructions productName videoProduct { typeOfVideo parentalAdvisory cLine { year holder } pLine { year holder } isrc lyrics languageOfVideoContent languageOfVideoTitle description keywords } } } """