Hi, I have a catalog called "catalog" that contains a bunch of
cataloged items. I have indexed 3 properties for each item, "name",
"body" and "description". I'd like to be able to search the catalog in
the following way:<br>
<br>if the word &quot;text&quot; shows up in any index, &quot;name&quot;, &quot;body&quot; or &quot;description&quot;, return that result back once.<br><br>The
problem is I have is that if a do a search for &quot;text&quot; and say there&#39;s
results that have the word &quot;text&quot; in one or more of those indexes:<br>
<br>catalog({name:query}) or catalog({body:query}) or catalog({description:query})<br>only gives back limited results (leaves out some &#39;True&#39; hits) and:<br>catalog({name:query}) + catalog({body:query}) + catalog({description:query})<br>

gives me back the same result 3 times.<br><br>any ideas? Thanks.