Assume I have the following data:
I have an index - meal
Inside the index meal, I want another index named pizza, and following ingredients:
The relationship is : meal->pizza->ingredients
For example,
(meal index)
HAWAIIAN pizza(pizza) using sugar,oil,pineapple,others(ingredients)
Indian pizza(pizza) using curry powder,butter,others(ingredients)
- How do I set the nested list in neo4j?
- How do I set the key,value pair?
start n=node:meals('name:pizza')and puting a property on the noden.type='meal'or for ingredientsstart n=node:meals('name:butter') where n.type='ingredient' return n;– ulkas Jan 7 at 8:44