Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-28-2022 06:21 AM
I have larger amount of data in the following form :
The nodes tree of data in the form of class containing list of the other
for example :
Class site {
string name;
List<equipment> equipment;
}
Class equipment{
string name;
List<Tags> tags;
}
...etc
list of sites having list of equipment and every equipment has list of tags
lists containing lists , how can i add this large amount of data in this form ?
09-29-2022 01:09 AM
You mean with Cypher or Neo4jClient ? The latter has afaik batching operations built in.
With Cypher you can pass your data e.g. as list of dictionaries and then use UNWIND
See
10-03-2022 10:28 AM
Actually I am using Neo4j Driver , Can you give me a code example for C# "Site" object has list of "Equipment" objects because i am still a little confused about how to implement your solution
All the sessions of the conference are now available online