Can I order the result of a view from the value returned by the abbreviated?
{ "rows": [ {"key":"bob","value":2}, {"key":"john","value":3}, {"key":"zztop","value":1} ] }
I want to get this result:
{ "rows": [ {"key":"zztop","value":1}, {"key":"bob","value":2}, {"key":"john","value":3} ] }
javascript couchdb
Lucas renan
source share