I am connecting the instance of AGE running on WSL to AGE Viewer running on Window. It is working fine. When I run query:
SELECT *
FROM cypher('university', $$
MATCH (v)
RETURN v
$$) as (v agtype);
It works fine and show all the nodes in the university
Graph in both Table and Graph View. But when I run:
SELECT *
FROM cypher('university', $$
MATCH ()-[e]->()
RETURN e
$$) as (v agtype);
It shows result in only Table View and Graph View shows nothing. How can I solve this issue?