Agregar etiqueta al nodo existente con Cypher


¿Cómo puedo agregar una etiqueta a un nodo existente usando una consulta de cifrado?

Author: Mark Amery, 2014-02-07

1 answers

Eso está en los documentos de referencia, ver http://docs.neo4j.org/chunked/stable/query-set.html#set-set-a-label-on-a-node , necesita usar set para agregar una etiqueta a un nodo existente:

match (n {id:desired-id})
set n :newLabel
return n
 53
Author: Stefan Armbruster,
Warning: date(): Invalid date.timezone value 'Europe/Kyiv', we selected the timezone 'UTC' for now. in /var/www/agent_stack/data/www/ajaxhispano.com/template/agent.layouts/content.php on line 61
2016-01-05 10:14:58