D Move PG Objects to PGQL or SQL Property Graph

PG Objects graph type is desupported in Graph Studio. Therefore, you must move to PGQL or SQL property graphs.

Perform the following steps:
  1. Navigate to the Notebooks page and open a notebook.
  2. Drop the PG Objects graph by calling the OPG_APIS.DROP_PG method using the SQL interpreter in a notebook paragraph.

    The following example drops the PG Objects graph named pg_graph.

    %sql
    begin
      OPG_APIS.DROP_PG('pg_graph');
    end;
  3. Create a PGQL Property Graph or SQL Property Graph.