getConnectedEdges()
Given an array of nodes that may be connected to one another and an array of all your edges, this util gives you an array of edges that connect any of the given nodes together.
import { getConnectedEdges } from '@xyflow/svelte';
let nodes = $state.raw([]);
let edges = $state.raw([]);
const connectedEdges = getConnectedEdges(nodes.value, edges.value);
Signature
Parameters:Name | Type | Default |
---|---|---|
nodes | NodeType[] Nodes you want to get the connected edges for. | |
edges | EdgeType[] All edges. |
Last updated on