SOLR searching multiple dynamic field _b boolean fields at the same time
When I do a search on a dynamic boolean field like so, it works and returns correct results.
<CFSEARCH name = "GetResults" collection = "mycollection" criteria="is_ethics_b:1" >
When I try to query more than one dynamic boolean fields:
<CFSEARCH name = "GetResults" collection = "mycollection" criteria="is_ethics_b:1 is_visible_b:0" >
<CFSEARCH name = "GetResults" collection = "mycollection" criteria="is_ethics_b:1 AND is_visible_b:0"
>
<CFSEARCH name = 'GetResults' collection = 'mycollection' criteria=' ""is_ethics_b:1"" AND ""is_visible_b:0"" '>
I have tried other combinations but I get variations of the same error:
cannot convert the value "1 AND is_visible_b:0" to a boolean
What is best way to query two dynamic _b fields?
Also, is there a way to test the query directly on the SOLR server?
Thank you for any help.
