I have a json file which is array and inside that another array is there. I want to combine them into single node. is that possible. Please have a look on json file:
thank you your reply. how can i create instance inside the for each for d alone. i mean if i declare "d:ab.d" this is returning error. can you show the syntax for it . do i need go for nested for each
The value of d in your JSON is a list of maps. In Neo4j you can't currently use a list of maps as a property, you can at most use a list of non-structure values.
You could instead save the JSON string representation of this structure as a String property (you would need apoc.convert.toJson() from APOC Procedures for this), or you could re-model such that instead of being saved as a property, you would model this as connected nodes, each one having the properties of the objects within the d list.