Skip to content
1 min read · 62 words

Function: incoming()

ts
function incoming(
  view: RawPlanView | PlanGraphView,
  nodeId: string,
): PlanEdge[];

Defined in: src/batteries/orchestration/plan.ts:135

The edges entering a node.

Parameters

ParameterTypeDescription
view| RawPlanView | PlanGraphViewThe graph to search.
nodeIdstringThe target node id.

Returns

PlanEdge[]

Every edge whose to is nodeId, in view order.