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
flowchart LR
subgraph Outbound Entity Type
OUT_A[action]
end
subgraph Relation Type CascadingAction
REL_A[action]
OUT_A --> REL_A
end
subgraph Inbound Entity Type
IN_A[action]
REL_A --> IN_A
end
Loading
RelationTypeCascadingAction
CascadingAction has ComponentAction and therefore a property named action
The outbound type is any EntityType which is an Action and therefore has a property named action
The inbound type is any EntityType which is an Action and therefore has a property named action
RelationBehaviourCascadingAction
Propagate outbound entity's action to relation's action
Propagate relation's action to inbound entity's action