Deprecated Features

Review the deprecated features in Oracle Graph Server and Client.

  • Graph Visualization Extension in Jupyter
    • SqlGraphVisualization.visual_query() is deprecated. Instead, use SqlGraphVisualization.visualize_query().
    • PgqlGraphVisualization.visual_query() is deprecated. Instead, use PgqlGraphVisualization.visualize_query().
    • PgxGraphVisualization.visual_query() is deprecated. Instead, use PgxGraphVisualization.visualize_query().
    Wrapping the result of visualize_query() in GraphVisualization() is deprecated. The function already returns a displayable GraphVisualization instance that can be used directly.
  • Graph Visualization Application

    The Graph Visualization application which runs on https://<server_host>:7007/dash/ is deprecated. Instead, use the Graph Explorer interface in Graph Studio by opening the URL https://<server_host>:7007/graphstudio in your browser.

    If you access the deprecated URL https://<server_host>:7007/dash/, you will be automatically redirected to https://<server_host>:7007/graphstudio/.

  • Administrator Dashboard URL

    The Administrator Dashboard URL https://<server_host>:7007/dash/ is deprecated. Instead, use https://<server_host>:7007/graphstudio/.

    If you access the deprecated URL https://<server_host>:7007/dash/, you will be automatically redirected to https://<server_host>:7007/graphstudio/.

  • Deprecated constructors in oracle.pgx.api
    • EntityProviderMetaData(String name, IdType idType, Set<String> labels, List<PropertyMetaData> properties) is deprecated. Instead, use EntityProviderMetaData(String name, List<KeyColumnDescriptor> keyColumns, Set<String> labels, List<PropertyMetaData> properties).
    • VertexProviderMetaData(String name, IdType idType, Set<String> labels, List<PropertyMetaData> properties, Set<String> edgeProviderNamesWhereSource, Set<String> edgeProviderNamesWhereDestination) is deprecated. Instead, use VertexProviderMetaData(String name, List<KeyColumnDescriptor> key, Set<String> labels, List<PropertyMetaData> properties, Set<String> edgeProviderNamesWhereSource, Set<String> edgeProviderNamesWhereDestination).
  • Deprecated constructor in oracle.pgx.config

    GraphResource.describeGraphLegacyFormat(ServletContext context, String sessionId, Request request, UriInfo uriInfo, DescribeGraphRequest describeGraphRequest) is deprecated. Instead, use GraphResource.describeGraph(ServletContext context, String sessionId, Request request, UriInfo uriInfo, DescribeGraphRequest describeGraphRequest).

  • Interfaces, Classes and Methods deprecated for oracle.pgx.api
    • GraphBuilder.setConfigParameter(GraphBuilderConfig.Field, Object) is deprecated. Instead, use specific setter methods.
    • AbstractServerConfig.getCaCerts() is deprecated.