Fields
Sample data
This example marks an order as ready to ship when it is paid, and leaves it not ready when it is not.| Field | Value |
|---|---|
| If all conditions are met | order.status equals paid |
| Then apply transformers | Set ready_to_ship to true |
| Else apply transformers | Set ready_to_ship to false |
ready_to_ship to true. The second order is pending, so the conditions fail and the “else” branch sets ready_to_ship to false.