How to manage graph group?

Hello,
I created some graph groups in virtuoso 8.
Now I want to list the names of graph in the group.
How could I do?

Thanks!

Jason

The graph group information is contained in the DB.DBA.RDF_GRAPH_GROUP table, and graph group membership in the DBA.RDF_GRAPH_GROUP_MEMBER table, as indicated in the documentation. A query of the following form can be run to see the details of available graph groups and members:

SELECT id_to_iri (RGGM_GROUP_IID), id_to_iri(RGGM_MEMBER_IID) FROM DB.DBA.RDF_GRAPH_GROUP_MEMBER;