For example, I have notes grouped by year, sorted by date from newest to oldest.
The order is: 2016, 2017, 2018, [...]
But, I want to have the newest notes on top: 2024, 2023, 2022, [...]
Of course, within each group, the notes are sorted from newest to oldest. But the grouping itself is going from oldest to newest.
Is there a functionality to sort the groups? Or, more specifically, can I reverse grouping like I can reverse sorting? I have tried: groupBy: '-finishDate', for example.
For example, I have notes grouped by year, sorted by date from newest to oldest.
The order is: 2016, 2017, 2018, [...]
But, I want to have the newest notes on top: 2024, 2023, 2022, [...]
Of course, within each group, the notes are sorted from newest to oldest. But the grouping itself is going from oldest to newest.
Is there a functionality to sort the groups? Or, more specifically, can I reverse grouping like I can reverse sorting? I have tried:
groupBy: '-finishDate'
, for example.