could you please specify your requirement?
as I can understand you want to load data from df .
is that true ? if yes then could you please tell us what is the schema
sorry for the late reply. here's my exact dataframe:
load_id start_point end_point arrival time Items store_id
1 London Rockwell 12:39 biscuits s1
1 London Rockwell 1:40 biscuits s2
2 New hampshire London 12:40 biscuits s39
2 New hampshire London 12:40 cashew s39
2 New hampshire London 1:38 cashew s44
Now i want to store this data in my graph database.
My nodes are start_point and end_point and store_id.
And the property of each store is items. And the relationships are Node_ids.
It want something like this: (start_point)--[load_id]--(store_id{items: })-->[load_id]-->(end_point)