graph_neighbors — forward adjacency
Walk forward edges from a source node along a single relation. Direction-tagged keys make this a single prefix scan.
curl "$ENGINE/v1/tenants/$T/graph/social.users/neighbors?rel=follows&pk=alice" \
-H "Authorization: Bearer $OC_TOKEN" {
"src": "alice",
"rel": "follows",
"neighbors": ["bob", "carol", "dan"],
"count": 3,
"elapsed_ms": 2
}