You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To prevent error "Internal error - should have used fall back to execute query, but something went horribly wrong" after setLabels command replace string (51) at Everyman/Neo4j/Command/SetLabels.php
$query = "START n=node({nodeId}) {$setCommand} n :{$labelSet} RETURN labels(n) AS labels";
with
$query="MATCH (n) WHERE id(n)={nodeId} {$setCommand} n :{$labelSet} RETURN labels(n) AS labels";
The text was updated successfully, but these errors were encountered:
To prevent error "Internal error - should have used fall back to execute query, but something went horribly wrong" after setLabels command replace string (51) at Everyman/Neo4j/Command/SetLabels.php
$query = "START n=node({nodeId}) {$setCommand} n :{$labelSet} RETURN labels(n) AS labels";
with
$query="MATCH (n) WHERE id(n)={nodeId} {$setCommand} n :{$labelSet} RETURN labels(n) AS labels";
The text was updated successfully, but these errors were encountered: