Love the parse functionality. Quick question regarding Lists.
Given the following JSON I want to get all names in the items list.
{items:[{name:"foo", size:"foo_size"}, {name:"bar", size:"bar_size"}]}
Which Path do I need to use to get to something comparable to
foo, bar
as an output?
(Imagined it to be items.name without referencing any [x], did not work)
Thanks a lot!