"""Graphql quries.""" POLL_VIDEO_WORKFLOW_STATUS = """ query($workflow_id: Int!) { getVideoWorkflowJobDetails(input: $workflow_id) { id, items { id, type, status, outputs { code, message } } thumbnails(imageSize: "small") } } """ SAVE_VIDEO_SINGLE = """ mutation ($data: SaveVideoSingleProductInput) { saveVideoSingleProduct(input: $data) { productId } } """