Uses of Interface
oracle.pgx.api.graphalteration.GraphAlterationBuilder
-
Packages that use GraphAlterationBuilder Package Description oracle.pgx.api This package contains the main Java APIs.oracle.pgx.api.graphalteration This package contains the APIs for the alterGraph mutation. -
-
Uses of GraphAlterationBuilder in oracle.pgx.api
Methods in oracle.pgx.api that return GraphAlterationBuilder Modifier and Type Method Description GraphAlterationBuilder
PgxGraph. alterGraph()
Create a graph alteration builder to define the graph schema alterations to perform on the graph -
Uses of GraphAlterationBuilder in oracle.pgx.api.graphalteration
Subinterfaces of GraphAlterationBuilder in oracle.pgx.api.graphalteration Modifier and Type Interface Description interface
GraphAlterationEmptyEdgeProviderBuilder
Builder to describe a new empty edge provider to add in a graph as part of a graph alteration.interface
GraphAlterationEmptyProviderBuilder
Builder to describe a new empty provider to add in a graph as part of a graph alteration.interface
GraphAlterationEmptyVertexProviderBuilder
Builder to describe a new empty vertex provider to add in a graph as part of a graph alteration.Methods in oracle.pgx.api.graphalteration that return GraphAlterationBuilder Modifier and Type Method Description GraphAlterationBuilder
GraphAlterationBuilder. addEdgeProvider(java.lang.String pathToEdgeProviderConfig)
Adds an edge provider for which the configuration is in a file at the specified pathGraphAlterationBuilder
GraphAlterationBuilder. addEdgeProvider(EntityProviderConfig edgeProviderConfig)
Adds an edge provider specified by the provided configurationGraphAlterationBuilder
GraphAlterationBuilder. addVertexProvider(java.lang.String pathToVertexProviderConfig)
Adds a vertex provider for which the configuration is in a file at the specified pathGraphAlterationBuilder
GraphAlterationBuilder. addVertexProvider(EntityProviderConfig vertexProviderConfig)
Adds a vertex provider specified by the provided configurationGraphAlterationBuilder
GraphAlterationBuilder. cascadeEdgeProviderRemovals(boolean cascadeEdgeProviderRemovals)
Specifies if the edge providers associated to a vertex provider (the vertex provider is either the source or destination provider for that edge provider) being removed should be automatically removed too or not.GraphAlterationBuilder
GraphAlterationBuilder. removeEdgeProvider(java.lang.String edgeProviderName)
Removes the edge provider that has the given nameGraphAlterationBuilder
GraphAlterationBuilder. removeVertexProvider(java.lang.String vertexProviderName)
Removes the vertex provider that has the given name.
-