The hack solution should be to have a Cypher request that looks something like this:
start n=node({nodeId}) set n :LABEL with n return labels(n)
And run some text manipulation on this request so that you insert a label. Here is a java example:
String setNodeLabelQuery = getQueryString(); setNodeLabelQuery = setNodeLabelQuery.replaceFirst("LABEL", "LABEL_B);
Where getQueryString() is a method that returns a query string.
source share