"""Queries.""" get_video_product_by_upc = """ query($upc: String!) { productByUpc(upc: $upc) { vendorId subaccountId productId typeOfVideo channelSelection tracks { isrc tuid } saleStartDate status notForDistribution displayStatus label { ... on Vendor { name } ... on Subaccount { name } } } } """ get_tracks_by_isrc = """ query($orchardLabelId: LabelIdInput!, $isrc: String!) { orchardLabel(id: $orchardLabelId) { labelSoundRecording(isrc: $isrc) { tracks { tuid trackType product { format } } } } } """