The latest plugin now supports a wildcard for JSON array objects. For example you can get the list of names of all projects using
%GET{ projects[*].name }%. See example at
SetGetPlugin.
--
Peter Thoeny - 2015-07-10
The latest
SetGetPlugin now supports queries using JSON path with [*] wildcard. For example, you can query a JSON array of hashes object to get an array of names:
%GET{ projects[*].name }% - use wildcard to get all project names; example return:
["Prj A","Prj B","Prj C"]
--
Peter Thoeny - 2015-07-15