Package | Description |
---|---|
oracle.pgx.api.expansion |
This package contains classes and utilities to support the subgraph expansion functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
PreparedPgViewPgqlQuery
A configuration builder for graph expansion using a prepared PGQL query.
|
Modifier and Type | Method and Description |
---|---|
PgqlViewGraphExpander |
PgqlViewGraphExpander.connections(int numConnections)
sets the number of connections to open to load the data in parallel
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.dataSourceId(java.lang.String dataSourceId)
sets the dataSourceId to which to connect
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.fromPgView(java.lang.String pgViewName)
Expand from a (different) PG View.
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.jdbcUrl(java.lang.String jdbcUrl)
sets the jdbcUrl to use for connecting to the DB
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.keystoreAlias(java.lang.String keystoreAlias)
sets the keystore alias to retrieve the password from the keystore
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.owner(java.lang.String owner)
sets the owner (schema) of the PG view from which to load the data
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.password(java.lang.String password)
sets the password to use for connecting to the database
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.queryPgql(java.lang.String query)
Add a PGQL query to the expansion.
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.schema(java.lang.String schema)
sets the schema from which to load the PG view
|
PgqlViewGraphExpander |
PgqlViewGraphExpander.username(java.lang.String userName)
sets the username of the DB user to use to connect to the DB
|
PgqlViewGraphExpander |
GenericGraphExpander.withPgql()
Expand the graph from PG Views, using a set of PGQL queries.
|