List Operations
Get Item From List Node
Get the item at a specific index from a list
This node retrieves an item from a list at a certain index (position). Position [index] starts from 0. Thus, an index of 1 gets the second value.
Node Inputs
- Type: The type of list you want to retrieve an item from
- Type:
Dropdown
- Type:
- List: The list from which you want to retrieve an item
- Type:
List<T>
(based on the type of list you choose)
- Type:
- Index: The index of the item you want to retrieve
- Type:
Integer
- Type:
Node Outputs
- Output: The item at the position (index)
- Type:
T
(based on the type of list you choose) - Example usage:
{{get_list_item_0.output}}
- Type:
Considerations
- Index value should always be non-negative.