You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| nextStep | object/stepKey of next step/function | See below |
58
+
| fields | array | As usual |
59
+
60
+
- nextStep can be name of the next step
34
61
- or you can branch the way by using of object:
35
62
36
63
```jsx
37
64
nextStep: {
38
65
when:'source-type', // name of field, where deciding value is stored
39
66
stepMapper: {
40
-
aws:'aws', // value: 'stepKey' of next step
67
+
aws:'aws', // value: 'name' of next step
41
68
google:'google',
42
69
...
43
70
},
44
71
},
45
72
```
73
+
74
+
- another option is to use custom function. The custom function receives as the first argument an object with values and the function has to return a `name` in string.
0 commit comments