Tail List
Gets all but the first element of the list
Description
Gets all but the first element of the list.
Example:
-
inputs
- source = [
{ "user": "barney", "age": 36, "active": true },
{ "user": "fred", "age": 40, "active": false },
{ "user": "pebbles", "age": 24, "active": true }
,{ "user": "travis", "age": 24, "active": true }
] - source = [
-
outputs
- result = [
{ "user": "fred", "age": 40, "active": false },
{ "user": "pebbles", "age": 24, "active": true }
,{ "user": "travis", "age": 24, "active": true }
] - result = [
Inputs
- Source (Object): The collection to inspect. Could be in the form of List, Array and QueryResult
Outputs
- Result (Object): The slice of the collection
- Error Flow (Error Flow): Triggered by providing unexpected type of the source