Background I am working on an app for my company which will allow us to generate interview packs by choosing questions that are associated to behaviours and indicators.
I have created the domain model so the behaviours, indicators and questions are all in separate entities. A question is associated to an indicator and an indicator is associated to a behaviour (You can have multiple indicators to a behavior and multiple questions to an indicator).
My Goal The way I see the packs being generated is to first display a list of the behaviours in a data grid where multiple selections can be made. I then want the user to move onto another page where they see the indicators related to the behaviours they chose on the previous page. The user will do the same thing, they will select the indicators they want and on the next page they will get the questions related to those indicators.
My Problem The problem I'm facing is that I cant seem to figure out how to filter the list of indicators by the selected behaviours on the previous page. I'm trying to achieve this through a microflow and when I try and filter the list it tells me its the wrong variable type.
Any ideas?