recipes warm intros.txt

PlanetGraph Recipes: Warm Introductions

This file describes one example use case implemented on top of PlanetGraph's generic graph model.

Generic model reminder

Recipe 1: Shared employer bridge

Intent

Cypher

MATCH (source:Person)-[:worked_for]->(company:Company)<-[:worked_for]-(target:Person)
RETURN source, company, target
LIMIT 100

Recipe 2: API-based edge filtering by node types

Intent

HTTP

GET /api/v1/edges?type=worked_for&source_type=Person&target_type=Company&limit=100

Recipe 3: Expand one person's employer neighbors

Intent

Cypher

MATCH (p:Person)-[:worked_for]->(c:Company)<-[:worked_for]-(other:Person)
RETURN p, c, other
LIMIT 100

Validation notes