lloydsun opened a new issue, #361:
URL: https://github.com/apache/age/issues/361

   **Describe the bug**
   I have a label "Game" on a node, I wanna change it to "game", but I tried 
REMOVE, I got an error:
   
   ```syntax error at or near ":"```
   
   **How are you accessing AGE (Command line, driver, etc.)?**
   nodejs driver
   
   I am using the official docker :latest
   
   **What data setup do we need to do?**
   ```pgsql
   ...
   SELECT
       *
   FROM
       cypher('vg-graph', $$
           CREATE (g:Game {name: "Front Mission", uid: "Pt6DmC8jnzDy", body: 
"some text"})
       $$) as (n agtype);
   ...
   ```
   
   **What is the necessary configuration info needed?**
   - no
   
   **What is the command that caused the error?**
   ```pgsql
   SET search_path TO ag_catalog;
   
   SELECT
       *
   FROM
       cypher('vg-graph', $$
           MATCH (n {uid:"Pt6DmC8jnzDy"})
           REMOVE n:Game
           RETURN n
       $$) as (n agtype);
   ```
   ```
   ERROR:  syntax error at or near ":"
   ```
   
   **Expected behavior**
   Remove the label
   
   **Environment (please complete the following information):**
   - AGE 1.1.0
   - PostgreSQL 11.16 (Debian 11.16-1.pgdg90+1) on x86_64-pc-linux-gnu, 
compiled by gcc (Debian 6.3.0-18+deb9u1) 6.3.0 20170516, 64-bit
   
   **Additional context**
   no.


-- 
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