aru-d-at commented on issue #820:
URL: https://github.com/apache/age/issues/820#issuecomment-1513664788
@jrgemignani I see, the reason cypher(), cypher() queries was failing for me
was cause of not adding the `graphN(v agtype)` at the end.
Seems like I can actually go ahead and overload with multiple cypher queries
if need be:
```opencypher
SELECT * FROM
cypher('graph1', $$
CREATE (c: Customer { user: 'jameS', tags: 'dev' })
$$) as graph1(v agtype),
cypher('graph2', $$
CREATE (s: Queries { user: 'jameS', keywords: ['ocaml','c++'] })
$$) as graph2(v agtype),
cypher('metro', $$
CREATE (n: Metro { user: 'jameS', keywords: ['ocaml','c++'] })
$$) as metro(v agtype);
```
--
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]