In our Datamodel every activity can additionally get multiple (0..n) labels. Due to the nature of 0..n relations this cannot be done via activity attributes as we don't know the nessessary amount of columns in forehand. That's why these labels (strings) are stored in a seperate table. Foreign Key is the unique activity ID.
I know how to filter/flag cases with the MATCH_PROCESS function. Here we use the nodenames or another string column, but the column is always part of the activity table.
Now I want to do something like:
Give me all cases where an activity with the associated label "Greeting" is directily followed by an activity with the associated label "Error".
Is it possible to filter cases based on the labels that are stored in a seperate table?