Hi!
I am using Json API as datasource. I am getting organization titles from api: $.result.nodes[*].children[*].title
, each organization has an array of banks as the children field, so I can get banks titles by $.result.nodes[*].children[*].children[*].title
. Also, each bank has a value
field. So, is it possible to group by organization title and its banks in one column and values in another column. That’s what I mean:
Is this possible, and if so, how can I achieve it? Thanks!