In my NiFi workflow,I configured a getMongo Processor along with query property .
my query is working fine and I am getting back the response from MongoDB in Ni-Fi as shown below
{ "_id" : { "$oid" : "5dcadc91f027705b1834d6c5" }, "empId" : "333-44-6J", "accountId" : "444434D2", "fulltimeEmployee" : "true", "DateJoined" : "07/14/2016 11:37:42", "Bloddgroup" : "null" }
I want to route DateJoined,Bloodgroup etc fields for further processing.
How do I access these fields once we have the response available in getMongo processor.
I tired to use Processors like RouteonAttribute and UpdateAttribute and trying to access DateJoined using "${DateJoined}" .but I am getting null value.