# OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesInTableApi

All URIs are relative to */*

Method | HTTP request | Description
------------- | ------------- | -------------
[**getEdgeFromKey**](EdgesInTableApi.md#getEdgeFromKey) | **GET** /core/v1/graphs/x-graph-id/tables/x-table-name/edges/x-edge-id | Get a specific edge

<a name="getEdgeFromKey"></a>
# **getEdgeFromKey**
> Edge getEdgeFromKey(SID, xGraphId, xTableName, xEdgeId)

Get a specific edge

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

let apiInstance = new OracleLabsParallelGraphAnalyticsPgxRestApi.EdgesInTableApi();
let SID = "SID_example"; // String | session ID
let xGraphId = "xGraphId_example"; // String | Name of the graph.
let xTableName = "xTableName_example"; // String | name of the table
let xEdgeId = "xEdgeId_example"; // String | string key of the edge

apiInstance.getEdgeFromKey(SID, xGraphId, xTableName, xEdgeId, (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**| Name of the graph. | 
 **xTableName** | **String**| name of the table | 
 **xEdgeId** | **String**| string key of the edge | 

### Return type

[**Edge**](Edge.md)

### Authorization

No authorization required

### HTTP request headers

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

