Hi Kartheek,
Yes in the java action I am forming a Json structure and setting the values as key value. Now I am returning the json to my microflow and importing the data into the entity using import mapping.
Thanks & Regards,
Sushuma
I would recommend using the Java libraries and process the data like this sample from
// Get the results.
TableResult result = queryJob.getQueryResults();
// Print all pages of the results.
for (FieldValueList row : result.iterateAll()) {
// String type
String commit = row.get("commit").getStringValue();
// Record type
FieldValueList author = row.get("author").getRecordValue();
String name = author.get("name").getStringValue();
String email = author.get("email").getStringValue();
MendixAuthor ma = new MendixAuthor(getContext());
ma.setName(name);
ma.setEmail(email);
ma.commit;
}