Search code examples
angularjsangularjs-filter

Descending order by date filter in AngularJs


<div class="recent" ng-repeat="reader in
    (filteredItems = (book.reader | orderBy: 'created_at' | limitTo: 1))">
</div>

So the book comes from rest api and it has many readers attached. I want to get the 'recent' reader.

The created_at field has the value which identifies the user as recent. But the above code gives me the oldest reader. So the order needs to be inversed? Is there some way to have the sorting in descending order?


Solution

  • According to documentation you can use the reverse argument.

    filter:orderBy(array, expression[, reverse]);
    

    Change your filter to:

    orderBy: 'created_at':true