We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4b2679 commit 8333e1aCopy full SHA for 8333e1a
docs/guide/formulas-and-rules-quick-ref.md
@@ -231,12 +231,18 @@ rules:
231
type: state_machine
232
field: status
233
transitions:
234
- draft: [submitted, cancelled]
235
- submitted: [approved, rejected]
236
- approved: [processing, cancelled]
237
- processing: [shipped, cancelled]
238
- shipped: [delivered]
239
- delivered: [] # terminal
+ draft:
+ allowed_next: [submitted, cancelled]
+ submitted:
+ allowed_next: [approved, rejected]
+ approved:
+ allowed_next: [processing, cancelled]
240
+ processing:
241
+ allowed_next: [shipped, cancelled]
242
+ shipped:
243
+ allowed_next: [delivered]
244
+ delivered:
245
+ allowed_next: [] # terminal
246
```
247
248
### Calculated Metrics
0 commit comments