tigergraph__get_node
Retrieve a single vertex from TigerGraph by type and ID to inspect its attributes or confirm its existence.
Instructions
Get a single node (vertex) from a TigerGraph graph by its type and ID.
Use When: • Retrieving a specific entity by its ID • Verifying a vertex was created successfully • Checking current attribute values • Fetching details before updating
Quick Start:
{
"vertex_type": "Person",
"vertex_id": "user123"
}Related Tools: • get_nodes - Get multiple vertices • has_node - Check if vertex exists • get_node_edges - Get edges connected to vertex
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile | No | Connection profile name. Omit to use the active default profile. Use 'list_connections' to see available profiles. | |
| vertex_id | Yes | ID of the vertex to retrieve. | |
| graph_name | No | Name of the graph. | |
| vertex_type | Yes | Type of the vertex to retrieve. |