Hi, I am new to orientDB but have been perusing the ETL/orientDB json examples. Is there any way to create multiple classes of vertices from the same json fetch in a given source file.... so supposing my json file had records that I wanted to create json vertices of classes: Person, Occupation, Nationality in a single file, would there a way to identify this in the json, supposing, off the cuff, json as follows:
[ { name: "mark anthony",
occupation: "roman general",
nationality: "roman"
},
{ name: "aurangzeb",
occupation: "emperor",
nationality: "indian"
},
{ name: "cleopatra",
occupation: "queen",
nationality: "egyptian"
}
]
and then create edges of type: "hasOccupation", "isNationality",
my question is there anyway to do this in a single json etl, I think I would have to have separate source files with just the occupation and just the nationaltiy.
ty, Sonu