I am using the following sample query to create a node with a label.
SELECT *
FROM cypher('vg-graph', $$
CREATE (m:Movie {name: "Movie Name", uid: "12345678", body: "Description"})
$$) as (n agtype);
Following query should remove label 'Movie' from the node.
SET search_path TO ag_catalog;
SELECT *
FROM cypher('vg-graph', $$
MATCH (n {uid:"12345678"})
REMOVE n:Movie
RETURN n
$$) as (n agtype);
but produces ERROR: syntax error at or near ":"
How can I achieve the same task in other ways?