Skip to main content

Get Value

Uncontrolled node

Overview

Get a value from a list or dictionary using path and return it as output. The path could be a list index or a dictionary key. In order to get nested values, ensure to use . or / separating the index or key name.

Accessing list elements
my_list.0
my_list/0
my_list/{{index}}
Accessing dictionary values
my_dictionary.product_name
my_dictionary/product_name
my_dictionary/{{element}}
Use Handlebars in your path

Handlebars syntax can be used to template variables into your paths. See Handlebars.

Inputs

InputTypeDescriptionDefault
ObjectList | DictionaryA data object from which to get a value.-
PathText | NumberAn index for a list or a key text for a dictionary.-

Outputs

OutputTypeDescription
ValueAnyThe value at the given path