Order by / sort #510
Replies: 1 comment
-
Hey @davetapley, you're not missing anything! TinyDB indeed does not have a sort/order by feature.
Regarding However, I fear introducing sort/order by would lead to a lot of complexity, particularly around corner cases like sorting by a nested field, sorting by multiple fields etc. For this reason I'd probably be inclined to not implement order by/sorting at all and leaving this to the user by sorting the result of Does this make sense to you? |
Beta Was this translation helpful? Give feedback.
-
I'm a bit surprised there is no order by / sort functionality. Am I missing something?
For my use case I'm inserting documents with a
{'_date': '2023-02-09T03:28:13.625084'
field,so I'd like to be able to sort on that and then
.get(
the most recent document matching the query.Beta Was this translation helpful? Give feedback.
All reactions