Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 179 Bytes

TEMPLATE_NOUVELLE_RECETTE.md

File metadata and controls

11 lines (8 loc) · 179 Bytes
// 

CREATE (n:Recette { nom: ''});

MATCH (a:Ingredient),(b:Recette)
WHERE a.nom = '' AND b.nom = ''
CREATE (a)-[r:INGREDIENT_DE { nom: 'INGREDIENT_DE' }]->(b)
RETURN r;