Hi, after building several workflows i got stuck the first time, after trying to solve the problem alone..
I have, lets say, 2 columns and 2 rows, that look like this:
| STRING | JSON | |
| row0 | xyz1 |
{
"data" : [ {
"outputs" : [ {
"hash" : "xyz1",
"hash" : "xyz2",
} ],
"outputs" : [ {
"hash" : "xyz3",
"hash" : "xyz4",
"hash" : "xyz5",
} ],
}
|
| row1 | abc4 |
{
"data" : [ {
"outputs" : [ {
"hash" : "abc1",
"hash" : "abc2",
} ],
"outputs" : [ {
"hash" : "abc3",
"hash" : "abc4",
"hash" : "abc5",
} ],
}
|
Now i want to extract all "outputs" data, that contain the string value from the other column, which should look like this:
| STRING | JSON | RESULT | |
| row0 | xyz1 |
{
"data" : [ {
"outputs" : [ {
"hash" : "xyz1",
"hash" : "xyz2",
} ],
"outputs" : [ {
"hash" : "xyz3",
"hash" : "xyz4",
"hash" : "xyz5",
} ],
}
|
"outputs" : [ {
"hash" : "xyz1",
"hash" : "xyz2",
} ],
|
| row1 | abc4 |
{
"data" : [ {
"outputs" : [ {
"hash" : "abc1",
"hash" : "abc2",
} ],
"outputs" : [ {
"hash" : "abc3",
"hash" : "abc4",
"hash" : "abc5",
} ],
}
|
"outputs" : [ {
"hash" : "abc3",
"hash" : "abc4",
"hash" : "abc5",
} ],
|
Has anybody an idea how to solve this?
Thank you very much in advance.