"""Queries.""" check_product_upc_exists = """ query($upc: String!) { productByUpc(upc: $upc) { productId } } """ save_video_single_product = """ mutation ($data: SaveVideoSingleProductInput) { saveVideoSingleProduct(input: $data) { productId upc } } """