When using node paths within an action
the starting point of their references are from the level of the action
, not the level of the property
within the action
. Example:
'Verbs': collection ['Verb'] {
'Verb': text
}
'Do something': action {
'Something': text -> .'Verbs'[] // <-- Here I would expect: ^ .'Verbs'[]
} => update ...
It seems more consistent to me to use the style of node paths as in other parts of a model (as suggested in the comment above). Why do these action
node paths deviate from this style?