"""Queries.""" SAVE_VIDEO_SINGLE = """ mutation ($data: SaveVideoSingleProductInput) { saveVideoSingleProduct(input: $data) { productId } } """ GET_PRODUCT_BY_UPC = """ query($upc: String!) { productByUpc(upc: $upc) { specialInstructions previewable preorderDate tracks { instantGrats { date track { tuid } store { storeId } active } } } } """ UPDATE_PRODUCT = """ mutation ($data: UpdateProductInput!) { updateProduct(input: $data) { productId } } """ SET_INSTANT_GRATS = """ mutation ($data: SetProductInstantGratsInput!) { setProductInstantGrats(input: $data) { productId } } """