Match nodes with common nodes with a relationship - Neo4j Cypher
问题 I have number of User nodes and Skills nodes. The relationship is between skills and users. USING PERIODIC COMMIT 1000 LOAD CSV WITH HEADERS FROM "file:/xyz.csv" AS row FIELDTERMINATOR '|' WITH row LIMIT 15 CREATE (u:User {company: row.company, salary: row.salary_float, designation: row.designation, experience: row.experience_float}) FOREACH (s IN split(row.tag_skill, "@") | MERGE (skill:SKILL {name: s}) ON CREATE SET skill.name = s CREATE (u)-[:KNOWS]->(skill)) I also need a relationship