Monday 31 August 2009 12:43:28 pm
Hi. Acording to SolrQuerySintax page [1], it's possible to do 'negative queries', so you can fetch something that is not 0 for example. Is this possible with eZFind? i would like to fetch all the contents of a class filtering by an attribute wich value is not 0. is really easy to fetch all that are 0, but i don't know how to fetch those wich are not 0. my code looks like
{def $results = fetch('ezfind', 'search', hash(
'query', $query,
'filter', array('myclass/myattr:0')
))}
how can i change this to fetch those wich myattr value is not 0? Thanks in advance. [1] http://wiki.apache.org/solr/SolrQuerySyntax
|