* Shape of `opentrace get-node --json`. Mirrors NodeDetail but with * untyped node payloads (the CLI emits store-shaped rows that need * `normalizeNode` before they become GraphNodes).
| 82 | * `normalizeNode` before they become GraphNodes). |
| 83 | */ |
| 84 | interface GetNodePayload { |
| 85 | node: any |
| 86 | neighbors: Array<{ |
| 87 | node: any |
| 88 | relationship: { type: string; direction: class="st">"incoming" | class="st">"outgoing" } |
| 89 | }> |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Shape of `opentrace traverse --json`. The CLI envelope also carries |
nothing calls this directly
no outgoing calls
no test coverage detected