21.4.0 • Published 2 years ago

oracle_labs_parallel_graph_analytics_pgx_rest_api v21.4.0

Weekly downloads
-
License
Copyright (C) 201...
Repository
-
Last release
2 years ago

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 project:

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

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

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:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. 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):

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:

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

Getting Started

Please follow the installation instruction and execute the following JS code:

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 /

ClassMethodHTTP requestDescription
OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApicancelAdminFutureDELETE /control/v1/futures/x-future-idCancel a future
OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApigetAdminFutureGET /control/v1/futures/x-future-id/valueGet the result of a future
OracleLabsParallelGraphAnalyticsPgxRestApi.AdminFuturesApigetAdminFutureStatusGET /control/v1/futures/x-future-id/statusGet the status of a future
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApicreateAnalysisPOST /core/v1/compileAnalysisCreate a new analysis
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApideleteAnalysisDELETE /core/v1/analyses/x-aidDelete an existing analysis
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApigetAnalysisMetaDataGET /core/v1/analyses/x-aidGet specific analysis metadata
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApigetAvailableAnalysesGET /core/v1/analysesGet all available analysis Metadata
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApigetAvailableAnalysisIdsGET /core/v1/availableAnalysesIdsGet all available analyses IDs
OracleLabsParallelGraphAnalyticsPgxRestApi.AnalysesApirunAnalysisPOST /core/v1/analyses/x-aid/runInvoke an analysis
OracleLabsParallelGraphAnalyticsPgxRestApi.CSRFTokenApigenerateTokenGET /tokenGenerate a CSRF token
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionProxiesApicreateCollectionProxyPOST /core/v1/collectionProxiesCreate a collection proxy.
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionProxiesApigetElementsGET /core/v1/collectionProxies/x-proxy-id/elementsGet paginated access to all the elements in the collection.
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApicloneCollectionPOST /core/v1/collections/x-collection-name/cloneClone a collection to hold vertices/edges of a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApicontainsElementPOST /core/v1/collections/x-collection-name/containsChecks presence of element in collection
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApicreateCollectionPOST /core/v1/collectionsCreate a collection
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApidestroyCollectionDELETE /core/v1/collections/x-collection-nameDelete a collection
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApigetCollectionGET /core/v1/collections/x-collection-nameGet a specific collection for a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApigetCollectionsGET /core/v1/collectionsList all collections for a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApiisCollectionMutableGET /core/v1/collections/x-collection-name/isMutableCheck whether a collection is mutable.
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApiremoveAllFromCollectionDELETE /core/v1/collections/x-collection-name/elementsClear a collection
OracleLabsParallelGraphAnalyticsPgxRestApi.CollectionsApitoMutableCollectionPOST /core/v1/collections/x-collection-name/toMutableCreates a mutable copy of a collection to hold vertices/edges of a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentStoragesApicomponentContainsElementPOST /core/v1/componentStorages/x-component-storage-name/components/x-id/containsCheck if a component contains a given element
OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentStoragesApidestroyComponentStorageDELETE /core/v1/componentStorages/x-component-storage-nameDelete a componentStorage collection
OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentsProxiesApicreateComponentsProxyPOST /core/v1/componentsProxiesCreate a components proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.ComponentsProxiesApigetComponentIdForNodeGET /core/v1/componentsProxies/x-proxy-id/componentIds/x-nodeGet one specific component
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetControlVersionGET /control/{version}Get Control Rest version
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetControlVersionsGET /controlList Control Rest versions
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetCoreVersionGET /core/{version}Get Core Rest version
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetCoreVersionsGET /coreList Core Rest versions
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetRootResourcesGET /Get list of Core/Control versions
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetSystemPermissionsGET /control/v1/currentUserSystemPermissionsGet the system permissions of the current user
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetUserRolesGET /control/v1/currentUserRolesGet the roles of the current user
OracleLabsParallelGraphAnalyticsPgxRestApi.DefaultApigetUsernameGET /control/v1/currentUserNameGet the name of the current user
OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApigetEdgeGET /core/v1/graphs/x-graph-id/edges/x-edge-idGet a specific edge
OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApigetEdgeLabelGET /core/v1/graphs/x-graph-id/edges/x-edge-id/labelGet the label of a given edge
OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesApigetVertexFromEdgeGET /core/v1/graphs/x-graph-id/edges/x-edge-id/vertexGet a vertex from an edge
OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesInTableApigetEdgeFromKeyGET /core/v1/graphs/x-graph-id/tables/x-table-name/edges/x-edge-idGet a specific edge
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiaddRowsToFrameBuilderPOST /core/v1/frameBuilders/x-frame-builder-id/rowsAdd rows to a frame builder
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApibuildFramePOST /core/v1/frameBuilders/x-frame-builder-id/buildBuild a frame from a frame builder
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApicreateFrameBuilderPOST /core/v1/createFrameBuilderCreate a frame builder
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApideleteFrameDELETE /core/v1/frames/x-frame-idDelete a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApidescribeFramePOST /core/v1/describeFrameDescribe a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApidestroyFrameBuilderDELETE /core/v1/frameBuilders/x-frame-builder-idDestroy a frame builder
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiflattenFramePOST /core/v1/frames/x-frame-id/flattenFlatten a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiframeCountGET /core/v1/frames/x-frame-id/countRetrieve the number of rows in a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiframeHeadPOST /core/v1/frames/x-frame-id/extractHeadExtract the first rows of a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiframeTailPOST /core/v1/frames/x-frame-id/extractTailExtract the last rows of a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiframeToPgqlResultSetGET /core/v1/frames/x-frame-id/pgqlResultSetConvert a frame into a PGQL result set
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApijoinFramesPOST /core/v1/frames/joinJoins two frames
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiloadFramePOST /core/v1/loadFrameLoad a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiprintFramePOST /core/v1/frames/x-frame-id/printBuild a textual representation of the frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiselectFramePOST /core/v1/frames/x-frame-id/selectSelect frame columns
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApistoreFramePOST /core/v1/frames/x-frame-id/storeStore a frame
OracleLabsParallelGraphAnalyticsPgxRestApi.FramesApiunionFramesPOST /core/v1/frames/unionUnions a set of frames
OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApicancelFutureDELETE /core/v1/futures/x-future-idCancel a future
OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApigetFutureGET /core/v1/futures/x-future-id/valueGet the result of a future
OracleLabsParallelGraphAnalyticsPgxRestApi.FuturesApigetFutureStatusGET /core/v1/futures/x-future-id/statusGet the status of a future
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApiaddRedactionRulePOST /core/v1/redactionsAdd a redaction rule to the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApialterGraphPOST /core/v1/alterGraphAlters a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApialterNewGraphSnaphotPOST /core/v1/alterGraphSnapshotAlters a graph as a new snapshot
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApibuildGraphPOST /core/v1/buildGraphBuild a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApibuildNewGraphSnaphotPOST /core/v1/buildGraphSnapshotBuild a graph snapshot
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApichangePinningStatePOST /core/v1/graphs/x-graph-id/pinPins a graph or a specific snapshot
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicheckoutPOST /core/v1/graphs/x-graph-id/snapshots/x-creation-ts/checkoutCheckout a specific Snapshot
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicloneGraphPOST /core/v1/graphs/x-graph-id/cloneClone a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicombinePropertyPOST /core/v1/graphs/x-graph-id/combinePropertiesCombine graph properties
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicreateBipartiteSubgraphPOST /core/v1/graphs/x-graph-id/bipartiteSubgraphsCreate a bipartite subgraph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicreateGraphFromFramesPOST /core/v1/createGraphFromFramesCreate a graph from frames
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicreateSparsifiedSubgraphPOST /core/v1/graphs/x-graph-id/sparsifiedSubgraphsCreate a sparsified subgraph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicreateSubgraphFromFilterPOST /core/v1/graphs/x-graph-id/fromFilterSubgraphsCreate a subgraph from filter
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApicreateUndirectedGraphPOST /core/v1/graphs/x-graph-id/undirectCreate an undirected graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApideleteGraphDELETE /core/v1/graphs/x-graph-idDelete a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApidescribeGraphPOST /core/v1/describeDescribe a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApiexistsGET /core/v1/graphs/x-graph-id/existsCheck if a node/edge exists
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetAvailableSnapshotGET /core/v1/graphs/x-graph-id/snapshots/x-creation-tsGet a specific Snapshot
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetAvailableSnapshotsPOST /core/v1/lookupSnapshotsList available Snapshots
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetAvailableSnapshotsByNameGET /core/v1/graphs/x-graph-id/snapshotsList available Snapshots by name
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetGraphNamesGET /core/v1/graphNames/x-namespace-idList graph names
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetGraphResultGET /core/v1/graphs/x-graph-idGet a specific graph result
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetGraphResultByNamePOST /core/v1/getGraphByNameGet a specific graph result by name
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetGraphsGET /core/v1/graphsList loaded graphs
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetPathProxyPOST /core/v1/graphs/x-graph-id/computePathCreate an AllPath Proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetPermissionGET /core/v1/graphs/x-graph-id/currentUserPermissionGet the permission of the current user
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetRandomEntityGET /core/v1/graphs/x-graph-id/randomEntityGet random entity
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigetRedactionRulesGET /core/v1/redactionsGet redaction rules from the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigrantPermissionPUT /core/v1/graphs/x-graph-id/grantPermissionGrant permission on the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigraphIsFreshGET /core/v1/graphs/x-graph-id/isFreshCheck whether the graph is fresh
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigraphIsPinnedGET /core/v1/graphs/x-graph-id/isPinnedCheck if a graph or snapshot has been pinned.
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApigraphIsPublishedGET /core/v1/graphs/x-graph-id/isPublishedCheck if a graph has been published.
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApiloadGraphPOST /core/v1/loadGraphLoad a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApipublishPOST /core/v1/graphs/x-graph-id/publishPublish a graph so it can be shared between sessions
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApirefreshPOST /core/v1/graphs/x-graph-id/refreshCheckout the newest Snapshot of a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApiremoveRedactionRulePOST /core/v1/redactions-deleteRemove a redaction rule from the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApirenameGraphPUT /core/v1/graphs/x-graph-id/nameRename a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApirevokePermissionPUT /core/v1/graphs/x-graph-id/revokePermissionRevoke permissions on the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApisimplifyGraphPOST /core/v1/graphs/x-graph-id/simplifySimplify a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApisortByDegreePOST /core/v1/graphs/x-graph-id/sortByDegreeSort a graph by degree
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApistoreGraphPOST /core/v1/graphs/x-graph-id/storeStore a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.GraphsApitransposeGraphPOST /core/v1/graphs/x-graph-id/transposeTranspose a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetGraphInfoGET /control/v1/graphs/x-graph-nameGet details about a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetGraphInfosGET /control/v1/graphsGet a list of graphs
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetMemoryInfoGET /control/v1/memoryInfoGet the memory info
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetPgxConfigGET /control/v1/pgxConfigGet PGX configuration
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetServerStateGET /control/v1/serverStateGet the current server state
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetSessionBoundGraphInfoGET /control/v1/sessions/x-session-id/graphs/x-graph-nameGet details of a session-bound, private graph
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetSessionInfoGET /control/v1/sessions/x-session-idGet the session info
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetSessionInfosGET /control/v1/sessionsList active sessions
OracleLabsParallelGraphAnalyticsPgxRestApi.InspectionApigetThreadPoolInfoPOST /control/v1/threadPool/lookupGet the thread pool info
OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApicontainsKeyGET /core/v1/mapProxies/x-proxy-id/keys/x-map-keyGet the information about a key in the map
OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApicreateMapProxyPOST /core/v1/mapProxiesCreate a map proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApigetEntrySetGET /core/v1/mapProxies/x-proxy-id/entriesGet list of entries
OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApigetKeySetGET /core/v1/mapProxies/x-proxy-id/keysGet the keys of the map
OracleLabsParallelGraphAnalyticsPgxRestApi.MapProxiesApigetValueForKeyGET /core/v1/mapProxies/x-proxy-id/keys/x-map-key/valueGet the value associated with the key
OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApicreateMapPOST /core/v1/mapsCreate a graph-bound or session-bound map
OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApidestroyMapDELETE /core/v1/maps/x-map-nameDelete a map
OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApiextractTopKFromMapPOST /core/v1/maps/x-map-name/extractTopKExtract the top K elements from a map
OracleLabsParallelGraphAnalyticsPgxRestApi.MapsApisetMapEntryPUT /core/v1/maps/x-map-name/entries/x-map-keySet an entry in the map to a specific value
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicomputeSimilarsBatchedDeepWalkModelPOST /core/v1/deepWalkMlModels/x-model-name/computeSimilarsBatchCompute similars according to a deepwalk model (batched variant)
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicomputeSimilarsBatchedPg2vecModelPOST /core/v1/pg2vecMlModels/x-model-name/computeSimilarsBatchCompute similar graphlets according to a pg2vec model (batched variant)
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicomputeSimilarsDeepWalkModelRequestPOST /core/v1/deepWalkMlModels/x-model-name/computeSimilarsCompute similars according to a deepwalk model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicomputeSimilarsPg2vecModelPOST /core/v1/pg2vecMlModels/x-model-name/computeSimilarsCompute similars graphlets according to a pg2vec model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicreateDeepWalkModelPOST /core/v1/deepWalkMlModelsCreate a DeepWalk model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicreatePg2vecModelPOST /core/v1/pg2vecMlModelsCreate a Pg2vec model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicreateSupervisedGraphWiseModelPOST /core/v1/graphWiseMlModelsCreate a Supervised GraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApicreateUnsupervisedGraphWiseModelPOST /core/v1/unsupervisedGraphWiseMlModelsCreate a Unsupervised GraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApidestroyMlModelDELETE /core/v1/mlModels/x-model-nameDelete an MlModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApiexplainGraphWiseModelPOST /core/v1/graphWiseMlModels/x-model-name/explainInfer and explain with a GraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApifitDeepWalkModelPOST /core/v1/deepWalkMlModels/x-model-name/fitTrain a DeepWalkModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApifitPg2vecModelPOST /core/v1/pg2vecMlModels/x-model-name/fitTrain a Pg2vecModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApifitSupervisedGraphWiseModelPOST /core/v1/graphWiseMlModels/x-model-name/fitTrain a SupervisedGraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApifitUnsupervisedGraphWiseModelPOST /core/v1/unsupervisedGraphWiseMlModels/x-model-name/fitTrain a UnsupervisedGraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApigetTrainedGraphletVectorsPg2vecModelGET /core/v1/pg2vecMlModels/x-model-name/trainedGraphletVectorsFetch the graphlets vectors of a Pg2vecModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApigetTrainedVertexVectorsDeepWalkModelGET /core/v1/deepWalkMlModels/x-model-name/trainedVertexVectorsFetch the vertex vectors of a DeepWalkModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApiinferGraphletPg2vecModelPOST /core/v1/pg2vecMlModels/x-model-name/inferInfer with a Pg2vecModel
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApiinferSupervisedGraphWiseModelPOST /core/v1/graphWiseMlModels/x-model-name/inferInfer with a Supervised GraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApiinferUnsupervisedGraphWiseModelPOST /core/v1/unsupervisedGraphWiseMlModels/x-model-name/inferInfer with a Unsupervised GraphWise model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApiloadModelPOST /core/v1/loadModelLoad a ML model
OracleLabsParallelGraphAnalyticsPgxRestApi.MlModelsApistoreModelWithConfigPOST /core/v1/mlModels/x-model-name/storeWithConfigStore a model
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApicloneAndExecutePgqlWithPostPOST /core/v1/pgql/cloneAndExecuteRun a PGQL query on a clone of the graph
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApidestroyPreparedStatementDELETE /core/v1/pgql/preparedStatements/x-ps-idDelete a pattern matching result set that is bound to a session.
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApidestroyResultDELETE /core/v1/pgql/queryResults/x-result-set-idDelete a pattern matching result set that is bound to a session
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApiexecuteAnyPreparedStatementPOST /core/v1/pgql/preparedStatements/x-ps-id/executeAnySubmit a pattern matching or graph altering query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApiexecutePgqlWithPostPOST /core/v1/pgql/executeRun a PGQL query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApiexecutePreparedStatementPOST /core/v1/pgql/preparedStatements/x-ps-id/executeSubmit a pattern matching query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApiexplainPgqlWithPostPOST /core/v1/pgql/explainExplain the execution plan of a PGQL query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApipreparePgqlPOST /core/v1/pgql/preparePrepare a pattern matching query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLApiqueryPgqlWithPostPOST /core/v1/pgql/runRun a PGQL query
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApicreateFrameFromPgqlResultPOST /core/v1/pgqlProxies/x-proxy-id/toFrameCreate a frame from a PGQL result set
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApicreatePgqlResultSetProxyPOST /core/v1/pgqlProxiesCreate a PGQL result set proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApigetPgqlResultProxyGET /core/v1/pgqlProxies/x-proxy-idGet a PGQL result set proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApigetResultElementsGET /core/v1/pgqlProxies/x-proxy-id/elementsGet PGQL result set elements
OracleLabsParallelGraphAnalyticsPgxRestApi.PGQLProxiesApigetResultsGET /core/v1/pgqlProxies/x-proxy-id/resultsGet PGQL result set values
OracleLabsParallelGraphAnalyticsPgxRestApi.PGXVersionApiversionGET /versionGet the version
OracleLabsParallelGraphAnalyticsPgxRestApi.PathProxiesApicreateAllPathsProxyPOST /core/v1/pathProxiesGet an all-paths proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PathProxiesApigetPathGET /core/v1/pathProxies/x-proxy-id/paths/x-destinationGet a specific path of an all-paths proxy object
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApiclonePropertyPOST /core/v1/graphs/x-graph-id/properties/x-property-name/cloneClone a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApicreatePropertyPOST /core/v1/graphs/x-graph-id/propertiesCreate a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApideletePropertyDELETE /core/v1/graphs/x-graph-id/properties/x-property-nameDelete a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApiexpandPropertyPOST /core/v1/graphs/x-graph-id/properties/x-property-name/expandExpand a vector property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApifillPropertyPUT /core/v1/graphs/x-graph-id/properties/x-property-name/fillValueFill a property with values
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApigetPropertyValueGET /core/v1/graphs/x-graph-id/properties/x-property-name/values/x-property-keyGet the value of a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApipropertyIsPublishedGET /core/v1/graphs/x-graph-id/properties/x-property-name/isPublishedCheck if property is published
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApipublishPropertyPOST /core/v1/graphs/x-graph-id/properties/x-property-name/publishPublish a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertiesApirenamePropertyPUT /core/v1/graphs/x-graph-id/properties/x-property-name/nameRename a property
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApicreatePropertyProxyPOST /core/v1/propertyProxiesCreate a property proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApigetBottomKGET /core/v1/propertyProxies/x-proxy-id/bottomKValuesGet the bottom K elements from a property proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApigetPropertyProxyGET /core/v1/propertyProxies/x-proxy-idGet a property proxy based on its ID
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApigetPropertyValueForKeyGET /core/v1/propertyProxies/x-proxy-id/values/x-property-keyGet a specific value from of a property proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApigetTopKGET /core/v1/propertyProxies/x-proxy-id/topKValuesGet the top K elements from a property proxy
OracleLabsParallelGraphAnalyticsPgxRestApi.PropertyProxiesApigetValuesGET /core/v1/propertyProxies/x-proxy-id/valuesGet values of the property proxy in a paginated way.
OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApicreateScalarPOST /core/v1/scalarsCreate a scalar
OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApidestroyScalarDELETE /core/v1/scalars/x-scalar-nameDelete a scalar
OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApigetScalarValueGET /core/v1/scalars/x-scalar-name/valueGet the value of a scalar
OracleLabsParallelGraphAnalyticsPgxRestApi.ScalarsApisetScalarValuePUT /core/v1/scalars/x-scalar-name/valueSet the value of a scalar
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApifreeCachedMemoryPOST /control/v1/freeCachedMemoryrelease memory of un-used graphs
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApiisReadyGET /control/v1/isGraphPreloadingDoneQuery whether the PGX server is ready
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApiisRunningGET /control/v1/isRunningQuery whether the PGX server is running
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApiisRunning_0GET /isRunningQuery whether the PGX server is running
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApikillSessionDELETE /control/v1/sessions/x-session-idKill a session
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApisetMaxSessionMemorySizePOST /control/v1/maxMemory/x-session-idSet session memory limit
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApishutdownPOST /control/v1/shutdownShut down this PGX instance
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApistartPOST /control/v1/startStart PGX instance
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApiunpinGraphPOST /control/v1/unpinGraphUnpin a graph
OracleLabsParallelGraphAnalyticsPgxRestApi.ServerManagementApiupdatePgxConfigPOST /control/v1/updatePgxConfigUpdate PGX configuration
OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApicreateSessionPOST /core/v1/sessionsCreate a new session
OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApideleteSessionDELETE /core/v1/sessionDelete a session
OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApigetExecutionEnvironmentGET /core/v1/executionEnvironmentGet the value for an execution environment field
OracleLabsParallelGraphAnalyticsPgxRestApi.SessionsApiupdateExecutionEnvironmentPOST /core/v1/executionEnvironment/updateUpdate an execution environment parameter
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApigetEdgeCountGET /core/v1/graphs/x-graph-id/vertices/x-vertex-id/edgeCountGet the out edge count
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApigetEdgesGET /core/v1/graphs/x-graph-id/vertices/x-vertex-id/connectedEdgesList the connected edges to a vertex
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApigetNeighborsGET /core/v1/graphs/x-graph-id/vertices/x-vertex-id/neighborsList vertex neighbors
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApigetVertexFromKeyGET /core/v1/graphs/x-graph-id/vertices/x-vertex-idGet a specific vertex
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesApigetVertexLabelsGET /core/v1/graphs/x-graph-id/vertices/x-vertex-id/labelsSetGet vertex Labels
OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesInTableApigetVertexGET /core/v1/graphs/x-graph-id/tables/x-table-name/vertices/x-vertex-idGet a specific vertex

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.