Hi, I am trying to apply a filter by specifying cost=100, but I would like to use boolean query on lines described below and it seems to be filtering documents; not sure if it's doing pre-filtering or post-filtering.
But, I saw some old post that "if the query inside the filter does not have a PostFilter implementation then the post filter is silently transformed into a simple filter"; which means the following filter query is treated as a simple filter (pre-filter) and not as a post-filter. {!cache=false cost=100}(moduleId: m1) AND (objType: (type1)) AND (objIds:(id1 id2 id3)) Is there a way to know if a filter was executed as pre-filter or post-filter when we run the query? Thanks, Vasu