(result)
| 11 | # ── helpers ────────────────────────────────────────────────────────────────── |
| 12 | |
| 13 | def _labels(result): |
| 14 | return [n["label"] for n in result["nodes"]] |
| 15 | |
| 16 | def _call_pairs(result): |
| 17 | node_by_id = {n["id"]: n["label"] for n in result["nodes"]} |
no outgoing calls
no test coverage detected