summaryrefslogtreecommitdiff
path: root/res/neo4j/reset-db__single_link.cypher
diff options
context:
space:
mode:
Diffstat (limited to 'res/neo4j/reset-db__single_link.cypher')
-rw-r--r--res/neo4j/reset-db__single_link.cypher8
1 files changed, 0 insertions, 8 deletions
diff --git a/res/neo4j/reset-db__single_link.cypher b/res/neo4j/reset-db__single_link.cypher
deleted file mode 100644
index 359e53ac..00000000
--- a/res/neo4j/reset-db__single_link.cypher
+++ /dev/null
@@ -1,8 +0,0 @@
-//
-// [!] call reset-db__clean.cypher first
-//
-
-// Data
-create (x:Person {name:'Bob', id: 'p_0', description: 'Bob is ...' });
-create (x:Skill {name:'Kung-Fu', id: 's_0', description: 'Kung-Fu is ...'});
-match (m:Person {id: 'p_0'}),(n:Skill {id: 's_0'}) create (m)-[:Knows {id: 'l_0'}]->(n);