quickstart.txt
PlanetGraph Agent Quickstart
Goal
Get an agent to perform graph reads and relationship discovery quickly.
PlanetGraph is generic. The warm-intro flow described below is an example workflow, not a platform constraint.
Steps
Read OpenAPI
Authenticate
- Add header:
X-API-Key: <key>
- Add header:
Discover current graph shape
- List node samples by type via
GET /api/v1/nodes?type=Person - List edge samples by type via
GET /api/v1/edges?limit=50
- List node samples by type via
Query warm-intro relationships
POST /api/v1/querywith shared-employer pattern.
Iterate
- Refine by source_type, target_type, and edge type filters.
Important
GET /api/v1/edges?typefilters edge labels.- For node-type filtering use
source_typeandtarget_type.