Munmud commented on issue #1031:
URL: https://github.com/apache/age/issues/1031#issuecomment-1635084176

   > Whenever you create a graph, two tables are created under the postgres 
namespace for that graph. These tables are `_ag_label_vertex` and 
`_ag_label_edge`. These tables contain all the vertices and edges respectively 
irrespective of their label and any table that is created on the creation of a 
new label inherits this default table (vertex label tables inherit 
`_ag_label_vertex` and edge label tables inherit `ag_label_edge`) You can find 
these tables using `SELECT * FROM ag_catalog.ag_label;`
   
   Thank you @Zainab-Saad . But this isn't actually what I was looking. The 
nodes and edges are stored with table name as `graph_name."label_name"`. So to 
view all the nodes and edges I was going through every table with different 
label. But @muhammadshoaib told me that there is already a table that store all 
nodes and edges. I don't have to go through different label name. Do you know 
anything about it ? 


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