descending( )


Adds a sort to a query, sorting by the specified properties in descending order.

The descending() function refines a GroupsQueryBuilder to sort in descending order of the specified properties. If you specify more than one property, descending() sorts the results in descending order by each property in the order they are listed.

You can sort the following types:

  • Number: Sorts numerically.
  • Date: Sorts by date and time.
  • String: Sorts lexicographically, so "abc" comes before "XYZ".

If a property contains a number as a String, that value will be sorted alphabetically and not numerically. Items that do not have a value for the specified sort property are ranked lowest.

Method Declaration
Copy
Method Parameters
propertyNameArray<string>Required

The properties used in the sort.

Supported properties:

  • _createdDate
  • name
  • memberCount
  • lastActivityDate
Returns
Return Type:GroupsQueryBuilder
Was this helpful?
Yes
No