# oracle_labs_parallel_graph_analytics__pgx_rest_api

OracleLabsParallelGraphAnalyticsPgxRestApi - JavaScript client for oracle_labs_parallel_graph_analytics__pgx_rest_api
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:

- API version: 21.4.0
- Package version: 21.4.0
- Build package: io.swagger.codegen.v3.generators.javascript.JavaScriptClientCodegen

## Installation

### For [Node.js](https://nodejs.org/)

#### npm

To publish the library as a [npm](https://www.npmjs.com/),
please follow the procedure in ["Publishing npm packages"](https://docs.npmjs.com/getting-started/publishing-npm-packages).

Then install it via:

```shell
npm install oracle_labs_parallel_graph_analytics__pgx_rest_api --save
```

#### git
#
If the library is hosted at a git repository, e.g.
https://github.com/GIT_USER_ID/GIT_REPO_ID
then install it via:

```shell
    npm install GIT_USER_ID/GIT_REPO_ID --save
```

### For browser

The library also works in the browser environment via npm and [browserify](http://browserify.org/). After following
the above steps with Node.js and installing browserify with `npm install -g browserify`,
perform the following (assuming *main.js* is your entry file):

```shell
browserify main.js > bundle.js
```

Then include *bundle.js* in the HTML pages.

### Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error:
Cannot resolve module", most certainly you should disable AMD loader. Add/merge
the following section to your webpack config:

```javascript
module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}
```

## Getting Started

Please follow the [installation](#installation) instruction and execute the following JS code:

```javascript
var OracleLabsParallelGraphAnalyticsPgxRestApi = require('oracle_labs_parallel_graph_analytics__pgx_rest_api');

var api = new OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApi()
var xFutureId = "xFutureId_example"; // {String} the future ID
var opts = { 
  'csrfToken': "csrfToken_example" // {String} CSRF token
};
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully.');
  }
};
api.cancelAdminFuture(xFutureId, opts, callback);
```

## Documentation for API Endpoints

All URIs are relative to */*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApi* | [**cancelAdminFuture**](docs/AdminFuturesApi.md#cancelAdminFuture) | **DELETE** /control/v1/futures/x-future-id | Cancel a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApi* | [**getAdminFuture**](docs/AdminFuturesApi.md#getAdminFuture) | **GET** /control/v1/futures/x-future-id/value | Get the result of a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApi* | [**getAdminFutureStatus**](docs/AdminFuturesApi.md#getAdminFutureStatus) | **GET** /control/v1/futures/x-future-id/status | Get the status of a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**createAnalysis**](docs/AnalysesApi.md#createAnalysis) | **POST** /core/v1/compileAnalysis | Create a new analysis
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**deleteAnalysis**](docs/AnalysesApi.md#deleteAnalysis) | **DELETE** /core/v1/analyses/x-aid | Delete an existing analysis
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**getAnalysisMetaData**](docs/AnalysesApi.md#getAnalysisMetaData) | **GET** /core/v1/analyses/x-aid | Get specific analysis metadata
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**getAvailableAnalyses**](docs/AnalysesApi.md#getAvailableAnalyses) | **GET** /core/v1/analyses | Get all available analysis Metadata
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**getAvailableAnalysisIds**](docs/AnalysesApi.md#getAvailableAnalysisIds) | **GET** /core/v1/availableAnalysesIds | Get all available analyses IDs
*OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApi* | [**runAnalysis**](docs/AnalysesApi.md#runAnalysis) | **POST** /core/v1/analyses/x-aid/run | Invoke an analysis
*OracleLabsParallelGraphAnalyticsPgxRestApi.CSRFTokenApi* | [**generateToken**](docs/CSRFTokenApi.md#generateToken) | **GET** /token | Generate a CSRF token
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionProxiesApi* | [**createCollectionProxy**](docs/CollectionProxiesApi.md#createCollectionProxy) | **POST** /core/v1/collectionProxies | Create a collection proxy.
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionProxiesApi* | [**getElements**](docs/CollectionProxiesApi.md#getElements) | **GET** /core/v1/collectionProxies/x-proxy-id/elements | Get paginated access to all the elements in the collection.
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**cloneCollection**](docs/CollectionsApi.md#cloneCollection) | **POST** /core/v1/collections/x-collection-name/clone | Clone a collection to hold vertices/edges of a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**containsElement**](docs/CollectionsApi.md#containsElement) | **POST** /core/v1/collections/x-collection-name/contains | Checks presence of element in collection
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**createCollection**](docs/CollectionsApi.md#createCollection) | **POST** /core/v1/collections | Create a collection
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**destroyCollection**](docs/CollectionsApi.md#destroyCollection) | **DELETE** /core/v1/collections/x-collection-name | Delete a collection
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**getCollection**](docs/CollectionsApi.md#getCollection) | **GET** /core/v1/collections/x-collection-name | Get a specific collection for a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**getCollections**](docs/CollectionsApi.md#getCollections) | **GET** /core/v1/collections | List all collections for a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**isCollectionMutable**](docs/CollectionsApi.md#isCollectionMutable) | **GET** /core/v1/collections/x-collection-name/isMutable | Check whether a collection is mutable.
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**removeAllFromCollection**](docs/CollectionsApi.md#removeAllFromCollection) | **DELETE** /core/v1/collections/x-collection-name/elements | Clear a collection
*OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApi* | [**toMutableCollection**](docs/CollectionsApi.md#toMutableCollection) | **POST** /core/v1/collections/x-collection-name/toMutable | Creates a mutable copy of a collection to hold vertices/edges of a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentStoragesApi* | [**componentContainsElement**](docs/ComponentStoragesApi.md#componentContainsElement) | **POST** /core/v1/componentStorages/x-component-storage-name/components/x-id/contains | Check if a component contains a given element
*OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentStoragesApi* | [**destroyComponentStorage**](docs/ComponentStoragesApi.md#destroyComponentStorage) | **DELETE** /core/v1/componentStorages/x-component-storage-name | Delete a componentStorage collection
*OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentsProxiesApi* | [**createComponentsProxy**](docs/ComponentsProxiesApi.md#createComponentsProxy) | **POST** /core/v1/componentsProxies | Create a components proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentsProxiesApi* | [**getComponentIdForNode**](docs/ComponentsProxiesApi.md#getComponentIdForNode) | **GET** /core/v1/componentsProxies/x-proxy-id/componentIds/x-node | Get one specific component
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getControlVersion**](docs/DefaultApi.md#getControlVersion) | **GET** /control/{version} | Get Control Rest version
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getControlVersions**](docs/DefaultApi.md#getControlVersions) | **GET** /control | List Control Rest versions
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getCoreVersion**](docs/DefaultApi.md#getCoreVersion) | **GET** /core/{version} | Get Core Rest version
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getCoreVersions**](docs/DefaultApi.md#getCoreVersions) | **GET** /core | List Core Rest versions
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getRootResources**](docs/DefaultApi.md#getRootResources) | **GET** / | Get list of Core/Control versions
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getSystemPermissions**](docs/DefaultApi.md#getSystemPermissions) | **GET** /control/v1/currentUserSystemPermissions | Get the system permissions of the current user
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getUserRoles**](docs/DefaultApi.md#getUserRoles) | **GET** /control/v1/currentUserRoles | Get the roles of the current user
*OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApi* | [**getUsername**](docs/DefaultApi.md#getUsername) | **GET** /control/v1/currentUserName | Get the name of the current user
*OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApi* | [**getEdge**](docs/EdgesApi.md#getEdge) | **GET** /core/v1/graphs/x-graph-id/edges/x-edge-id | Get a specific edge
*OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApi* | [**getEdgeLabel**](docs/EdgesApi.md#getEdgeLabel) | **GET** /core/v1/graphs/x-graph-id/edges/x-edge-id/label | Get the label of a given edge
*OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApi* | [**getVertexFromEdge**](docs/EdgesApi.md#getVertexFromEdge) | **GET** /core/v1/graphs/x-graph-id/edges/x-edge-id/vertex | Get a vertex from an edge
*OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesInTableApi* | [**getEdgeFromKey**](docs/EdgesInTableApi.md#getEdgeFromKey) | **GET** /core/v1/graphs/x-graph-id/tables/x-table-name/edges/x-edge-id | Get a specific edge
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**addRowsToFrameBuilder**](docs/FramesApi.md#addRowsToFrameBuilder) | **POST** /core/v1/frameBuilders/x-frame-builder-id/rows | Add rows to a frame builder
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**buildFrame**](docs/FramesApi.md#buildFrame) | **POST** /core/v1/frameBuilders/x-frame-builder-id/build | Build a frame from a frame builder
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**createFrameBuilder**](docs/FramesApi.md#createFrameBuilder) | **POST** /core/v1/createFrameBuilder | Create a frame builder
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**deleteFrame**](docs/FramesApi.md#deleteFrame) | **DELETE** /core/v1/frames/x-frame-id | Delete a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**describeFrame**](docs/FramesApi.md#describeFrame) | **POST** /core/v1/describeFrame | Describe a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**destroyFrameBuilder**](docs/FramesApi.md#destroyFrameBuilder) | **DELETE** /core/v1/frameBuilders/x-frame-builder-id | Destroy a frame builder
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**flattenFrame**](docs/FramesApi.md#flattenFrame) | **POST** /core/v1/frames/x-frame-id/flatten | Flatten a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**frameCount**](docs/FramesApi.md#frameCount) | **GET** /core/v1/frames/x-frame-id/count | Retrieve the number of rows in a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**frameHead**](docs/FramesApi.md#frameHead) | **POST** /core/v1/frames/x-frame-id/extractHead | Extract the first rows of a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**frameTail**](docs/FramesApi.md#frameTail) | **POST** /core/v1/frames/x-frame-id/extractTail | Extract the last rows of a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**frameToPgqlResultSet**](docs/FramesApi.md#frameToPgqlResultSet) | **GET** /core/v1/frames/x-frame-id/pgqlResultSet | Convert a frame into a PGQL result set
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**joinFrames**](docs/FramesApi.md#joinFrames) | **POST** /core/v1/frames/join | Joins two frames
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**loadFrame**](docs/FramesApi.md#loadFrame) | **POST** /core/v1/loadFrame | Load a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**printFrame**](docs/FramesApi.md#printFrame) | **POST** /core/v1/frames/x-frame-id/print | Build a textual representation of the frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**selectFrame**](docs/FramesApi.md#selectFrame) | **POST** /core/v1/frames/x-frame-id/select | Select frame columns
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**storeFrame**](docs/FramesApi.md#storeFrame) | **POST** /core/v1/frames/x-frame-id/store | Store a frame
*OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApi* | [**unionFrames**](docs/FramesApi.md#unionFrames) | **POST** /core/v1/frames/union | Unions a set of frames
*OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApi* | [**cancelFuture**](docs/FuturesApi.md#cancelFuture) | **DELETE** /core/v1/futures/x-future-id | Cancel a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApi* | [**getFuture**](docs/FuturesApi.md#getFuture) | **GET** /core/v1/futures/x-future-id/value | Get the result of a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApi* | [**getFutureStatus**](docs/FuturesApi.md#getFutureStatus) | **GET** /core/v1/futures/x-future-id/status | Get the status of a future
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**addRedactionRule**](docs/GraphsApi.md#addRedactionRule) | **POST** /core/v1/redactions | Add a redaction rule to the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**alterGraph**](docs/GraphsApi.md#alterGraph) | **POST** /core/v1/alterGraph | Alters a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**alterNewGraphSnaphot**](docs/GraphsApi.md#alterNewGraphSnaphot) | **POST** /core/v1/alterGraphSnapshot | Alters a graph as a new snapshot
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**buildGraph**](docs/GraphsApi.md#buildGraph) | **POST** /core/v1/buildGraph | Build a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**buildNewGraphSnaphot**](docs/GraphsApi.md#buildNewGraphSnaphot) | **POST** /core/v1/buildGraphSnapshot | Build a graph snapshot
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**changePinningState**](docs/GraphsApi.md#changePinningState) | **POST** /core/v1/graphs/x-graph-id/pin | Pins a graph or a specific snapshot
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**checkout**](docs/GraphsApi.md#checkout) | **POST** /core/v1/graphs/x-graph-id/snapshots/x-creation-ts/checkout | Checkout a specific Snapshot
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**cloneGraph**](docs/GraphsApi.md#cloneGraph) | **POST** /core/v1/graphs/x-graph-id/clone | Clone a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**combineProperty**](docs/GraphsApi.md#combineProperty) | **POST** /core/v1/graphs/x-graph-id/combineProperties | Combine graph properties
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**createBipartiteSubgraph**](docs/GraphsApi.md#createBipartiteSubgraph) | **POST** /core/v1/graphs/x-graph-id/bipartiteSubgraphs | Create a bipartite subgraph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**createGraphFromFrames**](docs/GraphsApi.md#createGraphFromFrames) | **POST** /core/v1/createGraphFromFrames | Create a graph from frames
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**createSparsifiedSubgraph**](docs/GraphsApi.md#createSparsifiedSubgraph) | **POST** /core/v1/graphs/x-graph-id/sparsifiedSubgraphs | Create a sparsified subgraph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**createSubgraphFromFilter**](docs/GraphsApi.md#createSubgraphFromFilter) | **POST** /core/v1/graphs/x-graph-id/fromFilterSubgraphs | Create a subgraph from filter
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**createUndirectedGraph**](docs/GraphsApi.md#createUndirectedGraph) | **POST** /core/v1/graphs/x-graph-id/undirect | Create an undirected graph 
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**deleteGraph**](docs/GraphsApi.md#deleteGraph) | **DELETE** /core/v1/graphs/x-graph-id | Delete a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**describeGraph**](docs/GraphsApi.md#describeGraph) | **POST** /core/v1/describe | Describe a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**exists**](docs/GraphsApi.md#exists) | **GET** /core/v1/graphs/x-graph-id/exists | Check if a node/edge exists
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getAvailableSnapshot**](docs/GraphsApi.md#getAvailableSnapshot) | **GET** /core/v1/graphs/x-graph-id/snapshots/x-creation-ts | Get a specific Snapshot
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getAvailableSnapshots**](docs/GraphsApi.md#getAvailableSnapshots) | **POST** /core/v1/lookupSnapshots | List available Snapshots
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getAvailableSnapshotsByName**](docs/GraphsApi.md#getAvailableSnapshotsByName) | **GET** /core/v1/graphs/x-graph-id/snapshots | List available Snapshots by name
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getGraphNames**](docs/GraphsApi.md#getGraphNames) | **GET** /core/v1/graphNames/x-namespace-id | List graph names
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getGraphResult**](docs/GraphsApi.md#getGraphResult) | **GET** /core/v1/graphs/x-graph-id | Get a specific graph result
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getGraphResultByName**](docs/GraphsApi.md#getGraphResultByName) | **POST** /core/v1/getGraphByName | Get a specific graph result by name
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getGraphs**](docs/GraphsApi.md#getGraphs) | **GET** /core/v1/graphs | List loaded graphs
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getPathProxy**](docs/GraphsApi.md#getPathProxy) | **POST** /core/v1/graphs/x-graph-id/computePath | Create an AllPath Proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getPermission**](docs/GraphsApi.md#getPermission) | **GET** /core/v1/graphs/x-graph-id/currentUserPermission | Get the permission of the current user
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getRandomEntity**](docs/GraphsApi.md#getRandomEntity) | **GET** /core/v1/graphs/x-graph-id/randomEntity | Get random entity
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**getRedactionRules**](docs/GraphsApi.md#getRedactionRules) | **GET** /core/v1/redactions | Get redaction rules from the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**grantPermission**](docs/GraphsApi.md#grantPermission) | **PUT** /core/v1/graphs/x-graph-id/grantPermission | Grant permission on the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**graphIsFresh**](docs/GraphsApi.md#graphIsFresh) | **GET** /core/v1/graphs/x-graph-id/isFresh | Check whether the graph is fresh
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**graphIsPinned**](docs/GraphsApi.md#graphIsPinned) | **GET** /core/v1/graphs/x-graph-id/isPinned | Check if a graph or snapshot has been pinned.
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**graphIsPublished**](docs/GraphsApi.md#graphIsPublished) | **GET** /core/v1/graphs/x-graph-id/isPublished | Check if a graph has been published.
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**loadGraph**](docs/GraphsApi.md#loadGraph) | **POST** /core/v1/loadGraph | Load a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**publish**](docs/GraphsApi.md#publish) | **POST** /core/v1/graphs/x-graph-id/publish | Publish a graph so it can be shared between sessions
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**refresh**](docs/GraphsApi.md#refresh) | **POST** /core/v1/graphs/x-graph-id/refresh | Checkout the newest Snapshot of a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**removeRedactionRule**](docs/GraphsApi.md#removeRedactionRule) | **POST** /core/v1/redactions-delete | Remove a redaction rule from the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**renameGraph**](docs/GraphsApi.md#renameGraph) | **PUT** /core/v1/graphs/x-graph-id/name | Rename a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**revokePermission**](docs/GraphsApi.md#revokePermission) | **PUT** /core/v1/graphs/x-graph-id/revokePermission | Revoke permissions on the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**simplifyGraph**](docs/GraphsApi.md#simplifyGraph) | **POST** /core/v1/graphs/x-graph-id/simplify | Simplify a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**sortByDegree**](docs/GraphsApi.md#sortByDegree) | **POST** /core/v1/graphs/x-graph-id/sortByDegree | Sort a graph by degree
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**storeGraph**](docs/GraphsApi.md#storeGraph) | **POST** /core/v1/graphs/x-graph-id/store | Store a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApi* | [**transposeGraph**](docs/GraphsApi.md#transposeGraph) | **POST** /core/v1/graphs/x-graph-id/transpose | Transpose a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getGraphInfo**](docs/InspectionApi.md#getGraphInfo) | **GET** /control/v1/graphs/x-graph-name | Get details about a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getGraphInfos**](docs/InspectionApi.md#getGraphInfos) | **GET** /control/v1/graphs | Get a list of graphs
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getMemoryInfo**](docs/InspectionApi.md#getMemoryInfo) | **GET** /control/v1/memoryInfo | Get the memory info
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getPgxConfig**](docs/InspectionApi.md#getPgxConfig) | **GET** /control/v1/pgxConfig | Get PGX configuration
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getServerState**](docs/InspectionApi.md#getServerState) | **GET** /control/v1/serverState | Get the current server state
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getSessionBoundGraphInfo**](docs/InspectionApi.md#getSessionBoundGraphInfo) | **GET** /control/v1/sessions/x-session-id/graphs/x-graph-name | Get details of a session-bound, private graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getSessionInfo**](docs/InspectionApi.md#getSessionInfo) | **GET** /control/v1/sessions/x-session-id | Get the session info
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getSessionInfos**](docs/InspectionApi.md#getSessionInfos) | **GET** /control/v1/sessions | List active sessions
*OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApi* | [**getThreadPoolInfo**](docs/InspectionApi.md#getThreadPoolInfo) | **POST** /control/v1/threadPool/lookup | Get the thread pool info
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApi* | [**containsKey**](docs/MapProxiesApi.md#containsKey) | **GET** /core/v1/mapProxies/x-proxy-id/keys/x-map-key | Get the information about a key in the map
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApi* | [**createMapProxy**](docs/MapProxiesApi.md#createMapProxy) | **POST** /core/v1/mapProxies | Create a map proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApi* | [**getEntrySet**](docs/MapProxiesApi.md#getEntrySet) | **GET** /core/v1/mapProxies/x-proxy-id/entries | Get list of entries
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApi* | [**getKeySet**](docs/MapProxiesApi.md#getKeySet) | **GET** /core/v1/mapProxies/x-proxy-id/keys | Get the keys of the map
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApi* | [**getValueForKey**](docs/MapProxiesApi.md#getValueForKey) | **GET** /core/v1/mapProxies/x-proxy-id/keys/x-map-key/value | Get the value associated with the key
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApi* | [**createMap**](docs/MapsApi.md#createMap) | **POST** /core/v1/maps | Create a graph-bound or session-bound map
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApi* | [**destroyMap**](docs/MapsApi.md#destroyMap) | **DELETE** /core/v1/maps/x-map-name | Delete a map
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApi* | [**extractTopKFromMap**](docs/MapsApi.md#extractTopKFromMap) | **POST** /core/v1/maps/x-map-name/extractTopK | Extract the top K elements from a map
*OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApi* | [**setMapEntry**](docs/MapsApi.md#setMapEntry) | **PUT** /core/v1/maps/x-map-name/entries/x-map-key | Set an entry in the map to a specific value
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**computeSimilarsBatchedDeepWalkModel**](docs/MlModelsApi.md#computeSimilarsBatchedDeepWalkModel) | **POST** /core/v1/deepWalkMlModels/x-model-name/computeSimilarsBatch | Compute similars according to a deepwalk model (batched variant)
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**computeSimilarsBatchedPg2vecModel**](docs/MlModelsApi.md#computeSimilarsBatchedPg2vecModel) | **POST** /core/v1/pg2vecMlModels/x-model-name/computeSimilarsBatch | Compute similar graphlets according to a pg2vec model (batched variant)
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**computeSimilarsDeepWalkModelRequest**](docs/MlModelsApi.md#computeSimilarsDeepWalkModelRequest) | **POST** /core/v1/deepWalkMlModels/x-model-name/computeSimilars | Compute similars according to a deepwalk model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**computeSimilarsPg2vecModel**](docs/MlModelsApi.md#computeSimilarsPg2vecModel) | **POST** /core/v1/pg2vecMlModels/x-model-name/computeSimilars | Compute similars graphlets according to a pg2vec model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**createDeepWalkModel**](docs/MlModelsApi.md#createDeepWalkModel) | **POST** /core/v1/deepWalkMlModels | Create a DeepWalk model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**createPg2vecModel**](docs/MlModelsApi.md#createPg2vecModel) | **POST** /core/v1/pg2vecMlModels | Create a Pg2vec model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**createSupervisedGraphWiseModel**](docs/MlModelsApi.md#createSupervisedGraphWiseModel) | **POST** /core/v1/graphWiseMlModels | Create a Supervised GraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**createUnsupervisedGraphWiseModel**](docs/MlModelsApi.md#createUnsupervisedGraphWiseModel) | **POST** /core/v1/unsupervisedGraphWiseMlModels | Create a Unsupervised GraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**destroyMlModel**](docs/MlModelsApi.md#destroyMlModel) | **DELETE** /core/v1/mlModels/x-model-name | Delete an MlModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**explainGraphWiseModel**](docs/MlModelsApi.md#explainGraphWiseModel) | **POST** /core/v1/graphWiseMlModels/x-model-name/explain | Infer and explain with a GraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**fitDeepWalkModel**](docs/MlModelsApi.md#fitDeepWalkModel) | **POST** /core/v1/deepWalkMlModels/x-model-name/fit | Train a DeepWalkModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**fitPg2vecModel**](docs/MlModelsApi.md#fitPg2vecModel) | **POST** /core/v1/pg2vecMlModels/x-model-name/fit | Train a Pg2vecModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**fitSupervisedGraphWiseModel**](docs/MlModelsApi.md#fitSupervisedGraphWiseModel) | **POST** /core/v1/graphWiseMlModels/x-model-name/fit | Train a SupervisedGraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**fitUnsupervisedGraphWiseModel**](docs/MlModelsApi.md#fitUnsupervisedGraphWiseModel) | **POST** /core/v1/unsupervisedGraphWiseMlModels/x-model-name/fit | Train a UnsupervisedGraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**getTrainedGraphletVectorsPg2vecModel**](docs/MlModelsApi.md#getTrainedGraphletVectorsPg2vecModel) | **GET** /core/v1/pg2vecMlModels/x-model-name/trainedGraphletVectors | Fetch the graphlets vectors of a Pg2vecModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**getTrainedVertexVectorsDeepWalkModel**](docs/MlModelsApi.md#getTrainedVertexVectorsDeepWalkModel) | **GET** /core/v1/deepWalkMlModels/x-model-name/trainedVertexVectors | Fetch the vertex vectors of a DeepWalkModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**inferGraphletPg2vecModel**](docs/MlModelsApi.md#inferGraphletPg2vecModel) | **POST** /core/v1/pg2vecMlModels/x-model-name/infer | Infer with a Pg2vecModel
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**inferSupervisedGraphWiseModel**](docs/MlModelsApi.md#inferSupervisedGraphWiseModel) | **POST** /core/v1/graphWiseMlModels/x-model-name/infer | Infer with a Supervised GraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**inferUnsupervisedGraphWiseModel**](docs/MlModelsApi.md#inferUnsupervisedGraphWiseModel) | **POST** /core/v1/unsupervisedGraphWiseMlModels/x-model-name/infer | Infer with a Unsupervised GraphWise model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**loadModel**](docs/MlModelsApi.md#loadModel) | **POST** /core/v1/loadModel | Load a ML model
*OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApi* | [**storeModelWithConfig**](docs/MlModelsApi.md#storeModelWithConfig) | **POST** /core/v1/mlModels/x-model-name/storeWithConfig | Store a model
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**cloneAndExecutePgqlWithPost**](docs/PGQLApi.md#cloneAndExecutePgqlWithPost) | **POST** /core/v1/pgql/cloneAndExecute | Run a PGQL query on a clone of the graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**destroyPreparedStatement**](docs/PGQLApi.md#destroyPreparedStatement) | **DELETE** /core/v1/pgql/preparedStatements/x-ps-id | Delete a pattern matching result set that is bound to a session.
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**destroyResult**](docs/PGQLApi.md#destroyResult) | **DELETE** /core/v1/pgql/queryResults/x-result-set-id | Delete a pattern matching result set that is bound to a session
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**executeAnyPreparedStatement**](docs/PGQLApi.md#executeAnyPreparedStatement) | **POST** /core/v1/pgql/preparedStatements/x-ps-id/executeAny | Submit a pattern matching or graph altering query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**executePgqlWithPost**](docs/PGQLApi.md#executePgqlWithPost) | **POST** /core/v1/pgql/execute | Run a PGQL query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**executePreparedStatement**](docs/PGQLApi.md#executePreparedStatement) | **POST** /core/v1/pgql/preparedStatements/x-ps-id/execute | Submit a pattern matching query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**explainPgqlWithPost**](docs/PGQLApi.md#explainPgqlWithPost) | **POST** /core/v1/pgql/explain | Explain the execution plan of a PGQL query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**preparePgql**](docs/PGQLApi.md#preparePgql) | **POST** /core/v1/pgql/prepare | Prepare a pattern matching query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApi* | [**queryPgqlWithPost**](docs/PGQLApi.md#queryPgqlWithPost) | **POST** /core/v1/pgql/run | Run a PGQL query
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApi* | [**createFrameFromPgqlResult**](docs/PGQLProxiesApi.md#createFrameFromPgqlResult) | **POST** /core/v1/pgqlProxies/x-proxy-id/toFrame | Create a frame from a PGQL result set
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApi* | [**createPgqlResultSetProxy**](docs/PGQLProxiesApi.md#createPgqlResultSetProxy) | **POST** /core/v1/pgqlProxies | Create a PGQL result set proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApi* | [**getPgqlResultProxy**](docs/PGQLProxiesApi.md#getPgqlResultProxy) | **GET** /core/v1/pgqlProxies/x-proxy-id | Get a PGQL result set proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApi* | [**getResultElements**](docs/PGQLProxiesApi.md#getResultElements) | **GET** /core/v1/pgqlProxies/x-proxy-id/elements | Get PGQL result set elements
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApi* | [**getResults**](docs/PGQLProxiesApi.md#getResults) | **GET** /core/v1/pgqlProxies/x-proxy-id/results | Get PGQL result set values
*OracleLabsParallelGraphAnalyticsPgxRestApi.PGXVersionApi* | [**version**](docs/PGXVersionApi.md#version) | **GET** /version | Get the version
*OracleLabsParallelGraphAnalyticsPgxRestApi.PathProxiesApi* | [**createAllPathsProxy**](docs/PathProxiesApi.md#createAllPathsProxy) | **POST** /core/v1/pathProxies | Get an all-paths proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PathProxiesApi* | [**getPath**](docs/PathProxiesApi.md#getPath) | **GET** /core/v1/pathProxies/x-proxy-id/paths/x-destination | Get a specific path of an all-paths proxy object
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**cloneProperty**](docs/PropertiesApi.md#cloneProperty) | **POST** /core/v1/graphs/x-graph-id/properties/x-property-name/clone | Clone a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**createProperty**](docs/PropertiesApi.md#createProperty) | **POST** /core/v1/graphs/x-graph-id/properties | Create a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**deleteProperty**](docs/PropertiesApi.md#deleteProperty) | **DELETE** /core/v1/graphs/x-graph-id/properties/x-property-name | Delete a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**expandProperty**](docs/PropertiesApi.md#expandProperty) | **POST** /core/v1/graphs/x-graph-id/properties/x-property-name/expand | Expand a vector property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**fillProperty**](docs/PropertiesApi.md#fillProperty) | **PUT** /core/v1/graphs/x-graph-id/properties/x-property-name/fillValue | Fill a property with values
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**getPropertyValue**](docs/PropertiesApi.md#getPropertyValue) | **GET** /core/v1/graphs/x-graph-id/properties/x-property-name/values/x-property-key | Get the value of a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**propertyIsPublished**](docs/PropertiesApi.md#propertyIsPublished) | **GET** /core/v1/graphs/x-graph-id/properties/x-property-name/isPublished | Check if property is published
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**publishProperty**](docs/PropertiesApi.md#publishProperty) | **POST** /core/v1/graphs/x-graph-id/properties/x-property-name/publish | Publish a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApi* | [**renameProperty**](docs/PropertiesApi.md#renameProperty) | **PUT** /core/v1/graphs/x-graph-id/properties/x-property-name/name | Rename a property
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**createPropertyProxy**](docs/PropertyProxiesApi.md#createPropertyProxy) | **POST** /core/v1/propertyProxies | Create a property proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**getBottomK**](docs/PropertyProxiesApi.md#getBottomK) | **GET** /core/v1/propertyProxies/x-proxy-id/bottomKValues | Get the bottom K elements from a property proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**getPropertyProxy**](docs/PropertyProxiesApi.md#getPropertyProxy) | **GET** /core/v1/propertyProxies/x-proxy-id | Get a property proxy based on its ID
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**getPropertyValueForKey**](docs/PropertyProxiesApi.md#getPropertyValueForKey) | **GET** /core/v1/propertyProxies/x-proxy-id/values/x-property-key | Get a specific value from of a property proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**getTopK**](docs/PropertyProxiesApi.md#getTopK) | **GET** /core/v1/propertyProxies/x-proxy-id/topKValues | Get the top K elements from a property proxy
*OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApi* | [**getValues**](docs/PropertyProxiesApi.md#getValues) | **GET** /core/v1/propertyProxies/x-proxy-id/values | Get values of the property proxy in a paginated way.
*OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApi* | [**createScalar**](docs/ScalarsApi.md#createScalar) | **POST** /core/v1/scalars | Create a scalar
*OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApi* | [**destroyScalar**](docs/ScalarsApi.md#destroyScalar) | **DELETE** /core/v1/scalars/x-scalar-name | Delete a scalar
*OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApi* | [**getScalarValue**](docs/ScalarsApi.md#getScalarValue) | **GET** /core/v1/scalars/x-scalar-name/value | Get the value of a scalar
*OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApi* | [**setScalarValue**](docs/ScalarsApi.md#setScalarValue) | **PUT** /core/v1/scalars/x-scalar-name/value | Set the value of a scalar
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**freeCachedMemory**](docs/ServerManagementApi.md#freeCachedMemory) | **POST** /control/v1/freeCachedMemory | release memory of un-used graphs
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**isReady**](docs/ServerManagementApi.md#isReady) | **GET** /control/v1/isGraphPreloadingDone | Query whether the PGX server is ready
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**isRunning**](docs/ServerManagementApi.md#isRunning) | **GET** /control/v1/isRunning | Query whether the PGX server is running
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**isRunning_0**](docs/ServerManagementApi.md#isRunning_0) | **GET** /isRunning | Query whether the PGX server is running
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**killSession**](docs/ServerManagementApi.md#killSession) | **DELETE** /control/v1/sessions/x-session-id | Kill a session
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**setMaxSessionMemorySize**](docs/ServerManagementApi.md#setMaxSessionMemorySize) | **POST** /control/v1/maxMemory/x-session-id | Set session memory limit
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**shutdown**](docs/ServerManagementApi.md#shutdown) | **POST** /control/v1/shutdown | Shut down this PGX instance
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**start**](docs/ServerManagementApi.md#start) | **POST** /control/v1/start | Start PGX instance
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**unpinGraph**](docs/ServerManagementApi.md#unpinGraph) | **POST** /control/v1/unpinGraph | Unpin a graph
*OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApi* | [**updatePgxConfig**](docs/ServerManagementApi.md#updatePgxConfig) | **POST** /control/v1/updatePgxConfig | Update PGX configuration
*OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApi* | [**createSession**](docs/SessionsApi.md#createSession) | **POST** /core/v1/sessions | Create a new session
*OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApi* | [**deleteSession**](docs/SessionsApi.md#deleteSession) | **DELETE** /core/v1/session | Delete a session
*OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApi* | [**getExecutionEnvironment**](docs/SessionsApi.md#getExecutionEnvironment) | **GET** /core/v1/executionEnvironment | Get the value for an execution environment field
*OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApi* | [**updateExecutionEnvironment**](docs/SessionsApi.md#updateExecutionEnvironment) | **POST** /core/v1/executionEnvironment/update | Update an execution environment parameter
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApi* | [**getEdgeCount**](docs/VerticesApi.md#getEdgeCount) | **GET** /core/v1/graphs/x-graph-id/vertices/x-vertex-id/edgeCount | Get the out edge count
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApi* | [**getEdges**](docs/VerticesApi.md#getEdges) | **GET** /core/v1/graphs/x-graph-id/vertices/x-vertex-id/connectedEdges | List the connected edges to a vertex
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApi* | [**getNeighbors**](docs/VerticesApi.md#getNeighbors) | **GET** /core/v1/graphs/x-graph-id/vertices/x-vertex-id/neighbors | List vertex neighbors
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApi* | [**getVertexFromKey**](docs/VerticesApi.md#getVertexFromKey) | **GET** /core/v1/graphs/x-graph-id/vertices/x-vertex-id | Get a specific vertex
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApi* | [**getVertexLabels**](docs/VerticesApi.md#getVertexLabels) | **GET** /core/v1/graphs/x-graph-id/vertices/x-vertex-id/labelsSet | Get vertex Labels
*OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesInTableApi* | [**getVertex**](docs/VerticesInTableApi.md#getVertex) | **GET** /core/v1/graphs/x-graph-id/tables/x-table-name/vertices/x-vertex-id | Get a specific vertex

## Documentation for Models

 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AddRedactionRuleRequest](docs/AddRedactionRuleRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AddRowsToFrameBuilderRequest](docs/AddRowsToFrameBuilderRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AllPathsProxyRequest](docs/AllPathsProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AllPathsProxyResponse](docs/AllPathsProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AlterGraphRequest](docs/AlterGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysisTaskConfig](docs/AnalysisTaskConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Argument](docs/Argument.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AsyncStatus](docs/AsyncStatus.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AuthorizationEntityConfig](docs/AuthorizationEntityConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AuthorizationEntityPermissionConfig](docs/AuthorizationEntityPermissionConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.AuthorizationLocationConfig](docs/AuthorizationLocationConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.BasicSchedulerConfig](docs/BasicSchedulerConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.BatchGenerator](docs/BatchGenerator.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.BindValueImpl](docs/BindValueImpl.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.BuildFrameRequest](docs/BuildFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.BuildGraphRequest](docs/BuildGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CacheStatistics](docs/CacheStatistics.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CloneCollectionRequest](docs/CloneCollectionRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionProxyResponse](docs/CollectionProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CombinePropertyRequest](docs/CombinePropertyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CompilationResult](docs/CompilationResult.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CompiledProgramMetaData](docs/CompiledProgramMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentsProxyResponse](docs/ComponentsProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ComputeMlModelRequest](docs/ComputeMlModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ComputeSimilarsBatchedMlModelRequest](docs/ComputeSimilarsBatchedMlModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ComputeSimilarsMlModelRequest](docs/ComputeSimilarsMlModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ContainsElementRequest](docs/ContainsElementRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ControlConfigUpdateRequest](docs/ControlConfigUpdateRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ControlSessionMaxMemoryRequest](docs/ControlSessionMaxMemoryRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ControlShutdownRequest](docs/ControlShutdownRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ControlStartRequest](docs/ControlStartRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CorruptionFunction](docs/CorruptionFunction.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateAnalysisRequest](docs/CreateAnalysisRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateBipartiteSubgraphRequest](docs/CreateBipartiteSubgraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateCollectionProxyRequest](docs/CreateCollectionProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateCollectionRequest](docs/CreateCollectionRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateComponentsProxyRequest](docs/CreateComponentsProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateDeepWalkModelRequest](docs/CreateDeepWalkModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateFrameBuilderRequest](docs/CreateFrameBuilderRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateGraphRequest](docs/CreateGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateMapProxyRequest](docs/CreateMapProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateMapRequest](docs/CreateMapRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreatePg2vecModelRequest](docs/CreatePg2vecModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreatePgqlResultProxyRequest](docs/CreatePgqlResultProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreatePropertyProxyRequest](docs/CreatePropertyProxyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreatePropertyRequest](docs/CreatePropertyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateScalarRequest](docs/CreateScalarRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateSessionRequest](docs/CreateSessionRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateSparsifiedSubgraphRequest](docs/CreateSparsifiedSubgraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateSubgraphFromFilterRequest](docs/CreateSubgraphFromFilterRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateSupervisedGraphWiseModelRequest](docs/CreateSupervisedGraphWiseModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.CreateUnsupervisedGraphWiseModelRequest](docs/CreateUnsupervisedGraphWiseModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.DataMemoryLimit](docs/DataMemoryLimit.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.DataMemoryLimitsConfig](docs/DataMemoryLimitsConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.DeepWalkModelMetadata](docs/DeepWalkModelMetadata.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.DescribeFrameRequest](docs/DescribeFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.DescribeGraphRequest](docs/DescribeGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Edge](docs/Edge.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EdgeFrameDeclaration](docs/EdgeFrameDeclaration.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EdgeLabel](docs/EdgeLabel.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EdgeProviderMetaData](docs/EdgeProviderMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EdgeStrategy](docs/EdgeStrategy.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EdgeTable](docs/EdgeTable.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EnterpriseSchedulerConfig](docs/EnterpriseSchedulerConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EnterpriseSchedulerFlagsConfig](docs/EnterpriseSchedulerFlagsConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EntityProviderConfigContainer](docs/EntityProviderConfigContainer.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.EntityProviderLocation](docs/EntityProviderLocation.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ExecutePreparedStatementRequest](docs/ExecutePreparedStatementRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ExecutionEnvironmentUpdateRequest](docs/ExecutionEnvironmentUpdateRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ExpandPropertyRequest](docs/ExpandPropertyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ExternalStoreConfig](docs/ExternalStoreConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ExtractTopKRequest](docs/ExtractTopKRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FilterExpressionConfig](docs/FilterExpressionConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FlattenFrameRequest](docs/FlattenFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FrameColumnMetaData](docs/FrameColumnMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FrameExtractionRequest](docs/FrameExtractionRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FrameMetaData](docs/FrameMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FramePrintingRequest](docs/FramePrintingRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.FrontierRedactedVerticesConfig](docs/FrontierRedactedVerticesConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GetGraphByNameRequest](docs/GetGraphByNameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Graph](docs/Graph.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphBuilderConfig](docs/GraphBuilderConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphConfig](docs/GraphConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphConfigContainer](docs/GraphConfigContainer.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphConfigRequest](docs/GraphConfigRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphErrorHandlingConfig](docs/GraphErrorHandlingConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphFilter](docs/GraphFilter.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphFrameDeclaration](docs/GraphFrameDeclaration.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphFromFramesRequest](docs/GraphFromFramesRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphInfo](docs/GraphInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphLoadingConfig](docs/GraphLoadingConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphLocation](docs/GraphLocation.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphMetaData](docs/GraphMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphPermissionRequest](docs/GraphPermissionRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphPropertyConfig](docs/GraphPropertyConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphWiseConvLayerConfig](docs/GraphWiseConvLayerConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphWiseDgiLayerConfig](docs/GraphWiseDgiLayerConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphWiseInferenceRequest](docs/GraphWiseInferenceRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.GraphWisePredictionLayerConfig](docs/GraphWisePredictionLayerConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.IdTypedObject](docs/IdTypedObject.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Iterable](docs/Iterable.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.IterableListObject](docs/IterableListObject.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.IterableObject](docs/IterableObject.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.JoinFramesRequest](docs/JoinFramesRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.JsonNode](docs/JsonNode.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.KeyWrapper](docs/KeyWrapper.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.LabelMaps](docs/LabelMaps.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Link](docs/Link.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.LoadFrameRequest](docs/LoadFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.LoadMlModelRequestConfig](docs/LoadMlModelRequestConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.LossFunction](docs/LossFunction.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MapInfo](docs/MapInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxyResponse](docs/MapProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MemoryInfo](docs/MemoryInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ModelLoadingConfiguration](docs/ModelLoadingConfiguration.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ModelStoringConfiguration](docs/ModelStoringConfiguration.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MovePropertyRequest](docs/MovePropertyRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MutateGraphRequest](docs/MutateGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.MutateRequest](docs/MutateRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Namespace](docs/Namespace.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Operation](docs/Operation.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Permissions](docs/Permissions.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Pg2vecModelMetadata](docs/Pg2vecModelMetadata.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlCloneAndExecuteRequest](docs/PgqlCloneAndExecuteRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlExplainRequest](docs/PgqlExplainRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlQueryRequest](docs/PgqlQueryRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlResultElement](docs/PgqlResultElement.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlResultProxyResponse](docs/PgqlResultProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgqlResultSetProxy](docs/PgqlResultSetProxy.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgxConfig](docs/PgxConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgxId](docs/PgxId.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PgxRedactionRuleConfig](docs/PgxRedactionRuleConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PinGraphRequest](docs/PinGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PoolInfo](docs/PoolInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PoolRequest](docs/PoolRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PreloadGraphConfig](docs/PreloadGraphConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PrepareStatementRequest](docs/PrepareStatementRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PreparedStatementResponse](docs/PreparedStatementResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesRedactionRuleConfig](docs/PropertiesRedactionRuleConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Property](docs/Property.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyInfo](docs/PropertyInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyMetaData](docs/PropertyMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxyResponse](docs/PropertyProxyResponse.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyTypedObject](docs/PropertyTypedObject.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyValue](docs/PropertyValue.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.PublishGraphRequest](docs/PublishGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RealmConfig](docs/RealmConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RefreshGraphRequest](docs/RefreshGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RemoveRedactionRuleRequest](docs/RemoveRedactionRuleRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RenameGraphRequest](docs/RenameGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RunAnalysisRequest](docs/RunAnalysisRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.RuntimeConfig](docs/RuntimeConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarValue](docs/ScalarValue.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SelectFrameRequest](docs/SelectFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SerializedPathProxy](docs/SerializedPathProxy.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SessionInfo](docs/SessionInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SetScalarValueRequest](docs/SetScalarValueRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SortByDegreeRequest](docs/SortByDegreeRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.StoreFrameRequest](docs/StoreFrameRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.StoreGraphRequest](docs/StoreGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.StoreMlModelRequest](docs/StoreMlModelRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SupervisedGraphWiseInferenceRequest](docs/SupervisedGraphWiseInferenceRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SupervisedGraphWiseModelConfig](docs/SupervisedGraphWiseModelConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.SupervisedGraphWiseModelMetadata](docs/SupervisedGraphWiseModelMetadata.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.TypedMapEntry](docs/TypedMapEntry.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnionFramesRequest](docs/UnionFramesRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnpinGraphRequest](docs/UnpinGraphRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnsafeHttpMethodRequest](docs/UnsafeHttpMethodRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnsupervisedGraphWiseInferenceRequest](docs/UnsupervisedGraphWiseInferenceRequest.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnsupervisedGraphWiseModelConfig](docs/UnsupervisedGraphWiseModelConfig.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.UnsupervisedGraphWiseModelMetadata](docs/UnsupervisedGraphWiseModelMetadata.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.ValueWrapper](docs/ValueWrapper.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.VersionInfo](docs/VersionInfo.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.Vertex](docs/Vertex.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.VertexFrameDeclaration](docs/VertexFrameDeclaration.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.VertexLabels](docs/VertexLabels.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.VertexProviderMetaData](docs/VertexProviderMetaData.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.VertexTable](docs/VertexTable.md)
 - [OracleLabsParallelGraphAnalyticsPgxRestApi.WorkloadCharacteristicSet](docs/WorkloadCharacteristicSet.md)

## Documentation for Authorization

 All endpoints do not require authorization.

