You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2022/06/20 14:58:26 UTC

[GitHub] [age] deka opened a new issue, #234: CREATE node with multiple labels

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

   **Describe the bug**
   Can you confirm AGE is compliant with [opencypher spec v9](https://s3.amazonaws.com/artifacts.opencypher.org/openCypher9.pdf) ?
   
   CREATE (:Label1:Label2) not working
   
   **How are you accessing AGE (Command line, driver, etc.)?**
   - [e.g. JDBC]
   
   **What data setup do we need to do?**
   Nothing
   
   **What is the necessary configuration info needed?**
   Nothing
   
   **What is the command that caused the error?**
   ```pgsql
   SELECT * 
   FROM cypher('graph', $$
       CREATE (n:Label1:Label2)
   	RETURN n
   $$) as (a agtype);
   ```
   ```
   ERROR:  syntax error at or near ":"
   ```
   
   **Expected behavior**
   Create node with multiple labels
   
   **Environment (please complete the following information):**
   - Version: [e.g. 1.0.0]
   
   


-- 
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: dev-unsubscribe@age.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] deka commented on issue #234: CREATE node with multiple labels

Posted by GitBox <gi...@apache.org>.
deka commented on issue #234:
URL: https://github.com/apache/age/issues/234#issuecomment-1160555218

   I see https://github.com/apache/age/issues/187
   
   Can you add informations about opencypher specifications support ?


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [age] jrgemignani commented on issue #234: CREATE node with multiple labels

Posted by GitBox <gi...@apache.org>.
jrgemignani commented on issue #234:
URL: https://github.com/apache/age/issues/234#issuecomment-1180979662

   It was an early design decision to not explicitly allow multiple labels for a vertex or edge in AGE. This was largely due to performance issues. Our team would need to revisit and discuss whether we would want to add that functionality. So, for now, multiple labels are not supported.


-- 
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: dev-unsubscribe@age.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org