参考实用程序

getOutgoers()

GitHub 上的源代码

此实用程序用于告知您哪些节点(如果有)作为边的目标连接到给定节点。

import { getOutgoers } from '@xyflow/react';
 
const nodes = [];
const edges = [];
 
const outgoers = getOutgoers(
  { id: '1', position: { x: 0, y: 0 }, data: { label: 'node' } },
  nodes,
  edges,
);

签名

#参数
#node
Node
#nodes
Node[]
#edges
Edge[]
#返回值
Node[]