Relation Type
Relation Type is: the relationship type of the connection between nodes, which determines the path selection of data in the rule chain. Different components provide different path connection relationships, generally speaking:
- The relationships provided by filter-type components are: True/False/Failure;
- The relationships provided by action-type components are: Success/Failure;
- Routing-type components can dynamically control routing or implement more complex relationship routing based on msgType, such as: jsSwitch , msgTypeSwitch, etc.
The relationship type of the connection between nodes is configured in the rule chain connection.type
field, for example:
"connections": [
{
"fromId": "s1",
"toId": "s2",
"type": "True"
}
]
1
2
3
4
5
6
7
2
3
4
5
6
7
Edit this page on GitHub (opens new window)
Last Updated: 2024/10/23, 10:13:01