In a relational db you’d have something like “select name, count(1) as c from mytable group by name order by c desc”. Basically I want to count how many records contain each name value and get the ones with highest counts first.
Is there a way to do a similar thing in Marklogic using the Node.js API?
Something like this should work:
The Querying Lexicons and Range Indexes section of the Node.js Application Developer’s Guide will provide more detail.