question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Sorting by Date not working

See original GitHub issue

Hi,

For some reason, the sort feature isn’t working. Am I doing something wrong?

export const LeadsIndex = new Index({
  collection: Leads,
  fields: ['firstName', 'lastName', 'createdAt'],
  engine: new MongoDBEngine({
    sort: () => { createdAt: -1 }
  }),
  defaultSearchOptions: { limit: 25 }
});

Mongo is saving date as ISODate().

I even tried to sort by a field called ‘firstName’, but it didn’t work either. Please advise.

Issue Analytics

  • State:closed
  • Created 7 years ago
  • Comments:7 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
matteodemcommented, Nov 26, 2016

shouldn’t sort: () => { createdAt: -1 } be sort: () => ({ createdAt: -1 })?

Looks like invalid syntax to me.

0reactions
matteodemcommented, Aug 30, 2017

oh yeah. Feel free to either create a PR fixing this in the gh-pages branch or creating a new issue

Read more comments on GitHub >

github_iconTop Results From Across the Web

[Fix] Excel Sort by Date Not Working (2 Causes with Solutions)
1. Change the Cell Format to Sort Date · Select all the cells first. · Press the right button of the mouse. ·...
Read more >
How to Fix Excel Dates That Won't Change Format - Contextures
If you want to sort the dates in column C, or change their format, the text dates have to be converted to real...
Read more >
How to sort dates from Oldest to Newest in Excel?
Click Home tab > arrow under Sort & Filter, and then click Sort Oldest to Newest, or Sort Newest to Oldest. NOTE: If...
Read more >
Excel date sorting issue - Microsoft Community Hub
I need to sort it for my research. yyyy-mm-dd date formats sort, BUT the yyyy-mm, and yyyy do not sort within yyyy-mm-dd list....
Read more >
Dates seem formatted correctly, but will not sort newest to oldest.
Post a small Excel sheet (not a picture) showing realistic & representative sample data WITHOUT confidential information (10-20 rows, not ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found