Overview
- I have a view B contains @Query for cars, now this @Query predicate depends on an input which is passed from view A.
Current approach
- I am creating @Query in the init of view B by using _cars.
Questions
- Now how can I compose @Query based on input from view A?
- Is my approach correct? In my approach Query will be created every time init gets called
- Or is there a better approach?