# OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesInTableApi

All URIs are relative to */*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getVertex**](VerticesInTableApi.md#getVertex) | **GET** /core/v1/graphs/x-graph-id/tables/x-table-name/vertices/x-vertex-id | Get a specific vertex

<a name="getVertex"></a>
# **getVertex**
> Vertex getVertex(SID, xGraphId, xTableName, idType, xVertexId)

Get a specific vertex

### Example
```javascript
import {OracleLabsParallelGraphAnalyticsPgxRestApi} from 'oracle_labs_parallel_graph_analytics__pgx_rest_api';

let apiInstance = new OracleLabsParallelGraphAnalyticsPgxRestApi.VerticesInTableApi();
let SID = "SID_example"; // String | session ID
let xGraphId = "xGraphId_example"; // String | id of the graph
let xTableName = "xTableName_example"; // String | name of the table
let idType = "idType_example"; // String | the Id type for the entity we are looking for (please respect the case)
let xVertexId = "xVertexId_example"; // String | string key of the vertex

apiInstance.getVertex(SID, xGraphId, xTableName, idType, xVertexId, (error, data, response) => {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
});
```

### Parameters

Name | Type | Description  | Notes
------------- | ------------- | ------------- | -------------
 **SID** | **String**| session ID | 
 **xGraphId** | **String**| id of the graph | 
 **xTableName** | **String**| name of the table | 
 **idType** | **String**| the Id type for the entity we are looking for (please respect the case) | 
 **xVertexId** | **String**| string key of the vertex | 

### Return type

[**Vertex**](Vertex.md)

### Authorization

No authorization required

### HTTP request headers

 - **Content-Type**: Not defined
 - **Accept**: application/json

