Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
In Mongodb I have to create multiple iterative arrays. But tMongodbOutput is allowing only one loop element.
Please any one help me to create multiple iterative loops
Ex: My work flow is like this:
oracleTable1 -
|------tMap -- tMongodbOutput
oracleTable2 -
In tMongodbOutpur I updated one loop element. Or please let me know how to prepare XML file for it.
expected example output is :
{
"Name": "firstName"
"Education": [{
course: "abc"
"college": "adsf"
}], // if it is one document also it should be array..
workExperience:[{
company": "qwertyui",
"duration": isoDate()
},{
company": "company2",
"duration": isoDate()
}
],
Phone:[
{
Phone: 678-765-xxxx,
type: "primary"
},{
Phone: 987-654-cccc,
type: "emer"
}
],
email:[
{
email: "asdf@adf.com",
type: "primary"
},
{
email: "asdf@asd.com",
type: "alternative"
}
]
}