List
List nodes let you work with ordered collections of values — building them up, reading from them, searching through them, and trimming them down. They are especially useful for giveaway entry pools, leaderboards, rotation queues, and any situation where you need to track multiple values at once.
All list nodes are pure logic and run on both the Streamerly backend and inside chatbox overlays with no difference in behavior.
Available Nodes
- List Add Item — Appends an item to the end of a list.
- List Contains — Checks whether a list includes a specific value, routing to Pass or Fail.
- List Find — Searches a list for the first item matching a value, with optional field matching for objects.
- List Get Item — Retrieves the item at a given index position.
- List Length — Returns the number of items in a list as a number.
- List Remove Item — Removes the item at a given index and outputs the updated list.