mondora / asteroid

An alternative client for a Meteor backend
MIT License
734 stars 101 forks source link

fetch reactiveQuery with sorted data #54

Closed daupawar closed 9 years ago

daupawar commented 9 years ago

I want to fetch data from collection with sort var prod=Production.reactiveQuery({sort: {index : -1},productionId:$cookies.productionid}); sort is not working here

daupawar commented 9 years ago

var prod=Production.reactiveQuery({}); var sorteddata=prod.result.sort(function(a, b){return a.index-b.index});