tigergraph__get_edges
Retrieves edges from a TigerGraph graph, with optional filters for edge type, source vertex type and ID, and result limit.
Instructions
Get multiple edges (relationships) from a TigerGraph graph, optionally filtered by type.
Use When: • Retrieving multiple edges • Exploring graph relationships • Data export and analysis
Quick Start:
{
"source_vertex_type": "Person",
"source_vertex_id": "user1",
"edge_type": "FOLLOWS"
}Tips: • Can filter by edge type • Returns all edges from a source vertex • Use 'get_neighbors' for simpler use cases
Related Tools: get_edge, get_neighbors, get_edge_count
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of edges to return. | |
| profile | No | Connection profile name. Omit to use the active default profile. Use 'list_connections' to see available profiles. | |
| edge_type | No | Type of the edge. If not provided, gets all types. | |
| graph_name | No | Name of the graph. If not provided, uses default connection. | |
| source_vertex_id | No | ID of the source vertex. If not provided, gets all edges. | |
| source_vertex_type | No | Type of the source vertex. If not provided, gets all types. |