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

  1. Type: The type of list you want to retrieve an item from
    • Type: Dropdown
  2. List: The list from which you want to retrieve an item
    • Type: List<T> (based on the type of list you choose)
  3. Index: The index of the item you want to retrieve
    • Type: Integer

Node Outputs

  1. Output: The item at the position (index)
    • Type: T (based on the type of list you choose)
    • Example usage: {{get_list_item_0.output}}

Considerations

  • Index value should always be non-negative.