Just figured out that by specifying the Return Type as Json in "EvaluateJsonPath" processor I got the entire array of values. So for JSON path expression "$.item.*.id","$.item.*.title" , I got ["2233","2232","2231"],["testing with Java","testing with Java","testing with Java"] I'm just trying to figure out how I can transpose it and instead get something like this
2233, "testing with Java" 2232, "testing with Java" 2231, "testing with Java" to generate my desired csv. -- View this message in context: http://apache-nifi-developer-list.39713.n7.nabble.com/How-to-iterate-through-complex-JSON-objects-tp5776p5791.html Sent from the Apache NiFi Developer List mailing list archive at Nabble.com.
