Decision Graph
AnalyzePrice: $0.05/callLatency: <3msComplexity: O(V + E)
Quick scenarios
Analyze a network of decisions with PageRank scoring, community detection, and shortest path analysis.
Click "Run Algorithm" to see results
cURL
curl -X POST https://oraclaw-api.onrender.com/api/v1/analyze/graph \
-H "Content-Type: application/json" \
-d '{"nodes":[{"id":"market-research","type":"decision","weight":0.8},{"id":"build-mvp","type":"decision","weight":0.9},{"id":"hire-team","type":"decision","weight":0.7},{"id":"launch","type":"goal","weight":1},{"id":"fundraise","type":"decision","weight":0.6}],"edges":[{"source":"market-research","target":"build-mvp","weight":0.9},{"source":"build-mvp","target":"launch","weight":0.95},{"source":"hire-team","target":"build-mvp","weight":0.8},{"source":"fundraise","target":"hire-team","weight":0.7},{"source":"market-research","target":"fundraise","weight":0.5}],"sourceGoal":"market-research","targetGoal":"launch"}'Input Schema
nodes: Array of {id, type?, weight?}
edges: Array of {source, target, weight?}
sourceGoal: string (optional)
targetGoal: string (optional)
Output Fields
pageRankcommunitiesshortestPathcentralityScores