Comparing version 0.7.0 to 0.8.0
@@ -179,3 +179,3 @@ /* -*- Mode: Javascript; js-indent-level: 2 -*- */ | ||
'START node=node({root})', | ||
'MATCH node-[rel?]-()', | ||
'OPTIONAL MATCH node-[rel]-()', | ||
'DELETE node, rel' | ||
@@ -182,0 +182,0 @@ ].join(' '), {root: id}, function(err) { callback(err) }); |
@@ -8,3 +8,3 @@ { | ||
"description": "A thin and familiar layer between node and neo4j's REST api.", | ||
"version": "0.7.0", | ||
"version": "0.8.0", | ||
"repository": { | ||
@@ -11,0 +11,0 @@ "url": "https://github.com/brikteknologier/seraph" |
@@ -85,5 +85,3 @@ # Seraph.js | ||
Seraph 0.6.7 has been tested with Neo4j 2.0.0-M06. If you would like to test | ||
compatibility with another version of neo4j, change the version values stored in | ||
`test/util/database.js`. | ||
Seraph 0.8.0 only works with Neo4j-2.0.0-RC1 and later. | ||
@@ -90,0 +88,0 @@ ## Testing |
@@ -176,3 +176,2 @@ /* -*- Mode: Javascript; js-indent-level: 2 -*- */ | ||
db.read(node, function(err, node) { | ||
console.log(err) | ||
assert(!err); | ||
@@ -179,0 +178,0 @@ assert(node.age == null); |
@@ -243,3 +243,3 @@ /* -*- Mode: Javascript; js-indent-level: 2 -*- */ | ||
var cypher = "start x = node(" + user.id + ") "; | ||
cypher += "match x -[?]-> n "; | ||
cypher += "optional match x --> n "; | ||
cypher += "return x, n "; | ||
@@ -246,0 +246,0 @@ db.query(cypher, function(err, result) { |
@@ -14,3 +14,3 @@ /* -*- Mode: Javascript; js-indent-level: 2 -*- */ | ||
disposableSeraph({ | ||
version: '2.0.0-M06', | ||
version: '2.0.0-RC1', | ||
edition: 'community', | ||
@@ -17,0 +17,0 @@ port: TEST_INSTANCE_PORT |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
160291
3532
1210