Package | Description |
---|---|
oracle.pgx.api.subgraph |
This package contains classes and utilities to support the subgraph reading functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
PreparedPgViewPgqlQuery
A configuration builder for initial subgraph reading using a prepared PGQL query.
|
Modifier and Type | Method and Description |
---|---|
PgViewSubgraphReader |
PgViewSubgraphReader.connections(int numConnections)
sets the number of connections to open to load the data in parallel
|
PgViewSubgraphReader |
PgViewSubgraphReader.dataSourceId(java.lang.String dataSourceId)
sets the dataSourceId to which to connect
|
PgViewSubgraphReader |
GenericSubgraphReader.fromPgView(java.lang.String viewName)
Read a subgraph from PG Views, using a set of PGQL queries.
|
PgViewSubgraphReader |
PgViewSubgraphReader.jdbcUrl(java.lang.String jdbcUrl)
sets the jdbcUrl to use for connecting to the DB
|
PgViewSubgraphReader |
PgViewSubgraphReader.keystoreAlias(java.lang.String keystoreAlias)
sets the keystore alias to retrieve the password from the keystore
|
PgViewSubgraphReader |
PgViewSubgraphReader.owner(java.lang.String owner)
sets the owner (schema) of the PG view from which to load the data
|
PgViewSubgraphReader |
PgViewSubgraphReader.password(java.lang.String password)
sets the password to use for connecting to the database
|
PgViewSubgraphReader |
PgViewSubgraphReader.queryPgql(java.lang.String query)
Adds another filtering query to the list of queries that will be executed to load the subgraph.
|
PgViewSubgraphReader |
PgViewSubgraphReader.schema(java.lang.String schema)
sets the schema from which to load the PG view
|
PgViewSubgraphReader |
PgViewSubgraphReader.username(java.lang.String userName)
sets the username of the DB user to use to connect to the DB
|
PgViewSubgraphReader |
PgViewSubgraphReader.withConfig(PartitionedGraphConfig config)
sets the graph configuration to use for loading the subgraph.
|