I am trying to save a json as a vertex's property value. Below is my query.
String createVrtx = "g.addV('Person').property('id','123').property('Address','{"City":"bang","pin": "123456"}')";
if i convert the json as string it works but when i try to parse output it becomes difficult any idea .
does gremlin support json type as property type.
Is it possible to add properties to a property like above address is a property and it values city has property bang etc.