bruinend opened a new issue, #77:
URL: https://github.com/apache/age-viewer/issues/77

   **Describe the bug**
   Edges are shown and treated as nodes?
   
   
   **To Reproduce**
   PG admin create node code: Create node 1 and create node 2
   Create Edge.
   
   Code used:
   
   SELECT * from cypher('metadata_graph1', $$
   CREATE (n:datapipeline {name: 'DP: test' , id: 'DP9' , description : 'sftp 
from a to b', status: 'In Service'}) RETURN n
   $$) as (V agtype)
   
   SELECT * from cypher('metadata_graph1', $$
   CREATE (n:datastore {name: 'NLTLD2DW' , id: 'DS6' , description : 'datastore 
legacy server', status: 'In Service'}) RETURN n
   $$) as (V agtype)
   
   SELECT * from cypher('metadata_graph1', $$
   MATCH (a: datapipeline{id: 'DP9'}), (b: datastore {id: 'DS6'}) CREATE 
(a)-[r:IS_LOCATED_ON {weight: 1, tag: 'twamp'}]->(b)
                                         return r
   $$) as (V agtype)
   
   
   **Expected behavior**
   2 nodes in overview (datastore and datapipeline)
   1 Edge in edge overview: IS_LOCATED_ON
   
   **Screenshots**
   In the printscreen I ran the create Edge code twice
   
   
![image](https://user-images.githubusercontent.com/116341150/207006184-f5e53977-a1b5-4d0f-be44-fa2b9707fc31.png)
   
   
   **Desktop (please complete the following information):**
   - OS: Windows
   - Browser : Chrome and Edge
   - Version 107.0.5304.107 (Official Build) (64-bit)
   
   **Additional context**
   AG viewer is the latest code used in a compose with Postgres Apache AGE / PG 
admin and jupyter lab.
   Also the Graph selector is not working properly when creating code with 
Jupyter lab. It selects the wrong one , or the leading grapgh is undefined?
   All in all I think this product is not fit for use in a big company we want 
to use it in :(
   I already created an Edge bug before (not visible) which is still existing. 
   


-- 
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]

Reply via email to