Last active
October 27, 2025 16:37
-
-
Save fantonangeli/49a39426e5921dc3b16e675be3a5694e to your computer and use it in GitHub Desktop.
kie-tools#3324: [serverless-workflow-diagram-editor] for a foreach state the foreach node is not highlighted
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| id: foreach | |
| version: '1.0' | |
| specVersion: '0.8.0' | |
| name: foreach | |
| description: foreach flow | |
| functions: | |
| - name: printMessage | |
| type: custom | |
| operation: sysout | |
| start: ForEachState | |
| states: | |
| - name: ForEachState | |
| type: foreach | |
| inputCollection: '[1,2,3]' | |
| iterationParam: item | |
| actions: | |
| - functionRef: | |
| refName: printMessage | |
| arguments: | |
| message: '"item: " + .item +"!"' | |
| batchSize: 1 | |
| end: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment