I have a token with a label 'Group' referencing a specific group e.g. "Group1". Now I want to execute a subflow in which I create a token for each object within the group. Each of those tokens should carry a label 'Object' with a reference to a object in the group.
1. If I use token.Group.subnodes.length as Quantity in the Create Tokens activity I get a token for each object but one additional parent token for which I don't have any use. Is there a way not to carry the parent token through the subflow?
2. Object label
2.1 In another project I used Group("Group1")[x] but token.Group[x] does not seem to work. What's the right way to reference?
2.2 How do I defined the index 'x' in the correct way? In the other project I used [tokenIndex] but this seems to be a global index and not a 1,2,3,.. for each new set of tokens in the subflow.