rafsun42 commented on issue #334:
URL: https://github.com/apache/age/issues/334#issuecomment-1288170653
@susano0 I see you are leaning towards Neo4j's naming rules. But, it seems
these rules are already implemented for vertices (and possibly edges).
When I execute the following,
```pgsql
select * from cypher('y', $$ CREATE (n:1first) RETURN n $$) as (a agtype);
```
I get this error:
```
ERROR: syntax error at or near "1"
LINE 1: select * from cypher('y', $$ CREATE (n:1first) RETURN n $$) ...
^
```
This example violates Neo4j's 2nd naming rule that `Names should not begin
with a number`. I tried violating other rules as well. AGE was able to prevent
all of them.
If AGE can prevent the violations, doesn't it mean naming rules are already
implemented?
--
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]