Data Functions
List of data functions
Pick a value from an array or object (PICK)
PICK function examples:
input1 = {"order":{"code":"A"}}
input2 = ["A", "B", "C"]
input3 = { "order": [ {"code":"A2", "price":22}, {"code":"B3", "price":11} ] }
[function] --> [output]
PICK({input1}, "order.code") --> "A"
PICK({input2}, "[2]") --> "C"
PICK({input3}, "order[0].code") --> "A2"
PICK({input3}, "order[1].price") --> 11Keep the same type without auto-casting (RAW_VALUE)
RAW_VALUE function examples:
Last updated
Was this helpful?

