david-m-m commented on issue #14:
URL:
https://github.com/apache/incubator-age-viewer/issues/14#issuecomment-975702274
Funny, I ran into the same error today as well.
What I found is that it works fine as soon as the relations have at least
one property set.
I.e. I get the graph displayed when creating the relations like this:
`MATCH (a:Person),(b:Book) WHERE a.name='Jack' AND b.name='Hitchhiker'
CREATE (a)-[r:Owns {name: a.name+'->'+b.name} ]->(b)`
while the following results in the described error:
`MATCH (a:Person),(b:Book) WHERE a.name='Jack' AND b.name='Hitchhiker'
CREATE (a)-[r:Owns]->(b)`
--
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]