Almost all of my DAGs will have a subset of repeating Operators. And because of my use case, it works out really well to create new wrapper Operators that combines multiple Operators in order to reduce boilerplate.
My question is how to go about combining them?
An example would be to query a database followed by sending a Slack message.
postgres_operator_task >> slack_operator_task
-> query_then_slack_operator_task