Hello,
I have a doubt on how the pull strategy shoud be addressed when applied to a queue (or any other element) if I want to filter by multiple criteria and "age" of item must be included.
Attached is a very simple model with a sourcing queue tha pushes into a global item list and then 3 other queues that demand elements based on the "Type" and "age". If I leave the "Type" filter only in the query, it works perfectly fine, but if I filter by "age" value, no element is pulled.
So, basically why "WHERE Type == 1" works and not "WHERE Type == 1 AND age >= 10" doesn't? Or just "WHERE age >= 10" doesn't work either as query.
Which is the error and the proper way of dealing with filtering dynamic properties like age?
Thanks in advance.