diff options
| author | LV-426 <lv-426@taproot.org.il> | 2015-01-04 22:28:10 +0200 |
|---|---|---|
| committer | LV-426 <lv-426@taproot.org.il> | 2015-01-04 22:28:10 +0200 |
| commit | 257a70a7e2540acfdac343dcb96f42a23cfedaa4 (patch) | |
| tree | 35d91b881608a832006aceb3dd60aa071a4674eb /res | |
| parent | 49915216e8f68a340b7aaa1652f25b962dc9b225 (diff) | |
DB init script: spawn 'commit-0' node
Diffstat (limited to 'res')
| -rw-r--r-- | res/neo4j/reset-db__single_link.cypher | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/res/neo4j/reset-db__single_link.cypher b/res/neo4j/reset-db__single_link.cypher index 39dcf6e4..72242ee1 100644 --- a/res/neo4j/reset-db__single_link.cypher +++ b/res/neo4j/reset-db__single_link.cypher @@ -10,6 +10,7 @@ create constraint on (x:Person) assert x.name is unique; create constraint on (x:Skill) assert x.name is unique; // Data +create (n:HEAD:Commit {hash: 'adc83b19e793491b1c6ea0fd8b46cd9f32e592fc', blob: ''}); 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); |
