Neo4j Cypher manual relationship index, APOC trigger and data duplication
问题 I have the following query that uses plain relationship operations for node filtering: MATCH (dg:DecisionGroup)-[:CONTAINS]->(childD:Decision) WHERE dg.id = 1 MATCH (childD)-[relationshipValueRel2:HAS_VALUE_ON]->(filterCharacteristic2:Characteristic) WHERE filterCharacteristic2.id = 2 WITH relationshipValueRel2, childD, dg WHERE (ANY (id IN [".NET"] WHERE id IN relationshipValueRel2.value )) RETURN childD.name which returns only one node(as it was expected): "Candidate1" PROFILE output: I'd