Lists
First N Elements
4min
overview this action retrieves the top n elements from a given list it allows users to specify the input list, the number of elements to retrieve, and the sorting order parameters inputs input a list ( list\<object> ) specifies the input list from which the elements will be retrieved input the number of elements to receive ( int ) determines the number of elements to retrieve from the input list sorted (dropdown) allows selection of sorting options unsorted sorted ascendingly sorted descendingly outputs results ( list\<object> ) provides the final list containing the top n elements based on the specified parameters important notes the number of elements to retrieve must be within the range of the input list size the output list will contain the first n elements based on the specified sorting order, if any