I have created a Book node called Book as follow:
Select * FROM cypher('graph_two',$$ CREATE (n:Book {title:'Something'}) $$) as (a agtype);
And a person Node as follows:
Select * FROM cypher('graph_two',$$ CREATE (n:User {Name:'Something'}) $$) as (a agtype);
And an edge between them as follows:
Select * FROM cypher('graph_two',$$ MATCH (a:User), (b:Book) CREATE (a)-[r:READS]->(b) Return r $$) as (r agtype);
And when I visualize this in age-viewer I get:
What am I doing wrong here? I want the User name and the Book title to be displayed rather than the OId.