Omar-Saad commented on issue #969:
URL: https://github.com/apache/age/issues/969#issuecomment-1579230438

   Currently you can't change label name in Apache AGE. 
   
   So, you have to recreate them with the new label then delete the old ones 
and you can do this with only one query.
   
   ```
   MATCH (m:Movie)
   CREATE (om:OldMovie)
   SET om = m
   REMOVE m:Movie
   RETURN om
   ```
   
   This query first matches all nodes with `Movie` label and then creates a 
copy of it with a new label `OldMovie`.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to