useNodeConnections()
This hook returns an array of connections on a specific node, handle type (βsourceβ, βtargetβ) or handle ID.
<script>
import { useNodeConnections } from '@xyflow/svelte';
const connections = useNodeConnections({ handleType: 'target', handleId: 'my-handle' });
</script>
<div>There are currently {connections.length} incoming connections!</div>Signature
| Name | Type |
|---|---|
#Params | |
# id? | stringID of the node, filled in automatically if used inside custom node |
# handleType? | "source" | "target"What type of handle connections do you want to observer? |
# handleId? | stringID of the handle |
# onConnect? | (connections: Connection[]) => void |
# onDisconnect? | (connections: Connection[]) => void |
#Returns | |
Last updated on