I am trying to pull all hacker news comments matching:
-
created in last 24 hours,
-
with more than 10 points (for example)
With the following query:
The filter[fields][points]=10 gives me all items matching exactly 10 points, but not the ones with more than 10 points. How do I get all items with more than 10 points?
The doc to the ThirftDB Rest API is here but I just don’t see how to do it.
Query syntax seems similar to Solr (http://wiki.apache.org/solr/SolrQuerySyntax):
http://api.thriftdb.com/api.hnsearch.com/items/_search?pretty_print=true&filter%5Bfields%5D%5Bcreate_ts%5D=%5BNOW-100HOURS TO NOW]&filter[queries][]=points:[10+TO+*]