Search notes:

Oracle: DBA_PROPERTY_GRAPHS

dba_property_graphs and the variants all_property_graphs, user_property_graphs and cdb_property_graphs` list the defined property graphs in the database.
select 
   owner,
   graph_name,
   graph_mode,
   allows_mixed_types,
   inmemory
from
   dba_property_graphs;

See also

Data dictionary views related to property graphs.

Index