Closed
Description
Because JSON doesn't take order into account, sort should be an array, not an object.
For instance:
sort : {
postDate : {reverse : true},
user : { },
score : { }
}
is the equivalent of:
sort : {
score : { }
user : { },
postDate : {reverse : true},
}
Instead, perhaps this syntax:
sort : [
"score",
"user",
{ "postDate": { "reverse": true}}
]
clint