Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
OrderBy Input
Input representation of the
orderBy
clause to sort actionable list members.
- JSON Example
-
1{ 2 "orderBy" : { 3 "orderByList" : [ 4 { 5 "fieldName" : "Name", 6 "operator" : "ASC", 7 "nulls" : "First" 8 } 9 ] 10 } 11} - Properties
-
Name Type Description Required or Optional Available Version fieldName String Name of the field used for sorting actionable list members Required 57.0 nulls String Specifies where to show the fields with a null value-at the top or bottom of the sorted list Optional 57.0 operator String Specifies the sorting order: - ASC
- DESC
Required 57.0