Hi all,
I need to make a lucene query to find an list of nodes, ordered by modified DESC. I only want the first 10 records back. I am using javascript.
This works:
model.nodes = search.luceneSearch("@cm\\:modified:[2007-01-17T00:00:00 TO 2007-08-05T00:00:00]");
But I would like to do something like:
model.nodes = search.luceneSearch("@cm\\:modified:[2007-01-17T00:00:00 TO 2007-08-05T00:00:00] AS mod ORDER BY mod DESC 10");
Thanks in advance for your help,
Jacques