Last N Elements
Returns the last N elements from a given list.
Overview
Returns the last N elements from a given list.
Parameters
Inputs
- input a list (
list<object>) - input the number of elements to receive (
int) - sorted (dropdown): unsorted, sorted ascendingly, sorted descendingly
Outputs
- results (
list<object>) - the final list
Important Notes
- Ensure the input list contains enough elements to retrieve the last N elements.
- The output list will contain the last N elements based on the specified sorting order, if any.
First N Elements
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โฆ
Find Duplicates
You can utilize this action to identify duplicates within a list of complex JSON objects, based on specified criteria and return a new listโฆ

