diff --git a/docs/src/examples/math.md b/docs/src/examples/math.md
index dd483ad50..d3cdfb254 100644
--- a/docs/src/examples/math.md
+++ b/docs/src/examples/math.md
@@ -1,8 +1,8 @@
# Math Operation
-This example demonstrates how to use the different composables like `useHandleConnections` or `useNodesData` to create a data flow between nodes.
+This example demonstrates how to use the different composables like `useNodeConnections` or `useNodesData` to create a data flow between nodes.
-In this example we use nodes to create a simple math operation, where the user can input two numbers and select an operation to perform.
+We use nodes to create a simple math operation, where the user can input two numbers and select an operation to perform.
diff --git a/docs/src/guide/composables.md b/docs/src/guide/composables.md
index 1714575cd..336a90586 100644
--- a/docs/src/guide/composables.md
+++ b/docs/src/guide/composables.md
@@ -102,8 +102,7 @@ const connections = useHandleConnections({
## [useNodeConnections](/typedocs/functions/useNodeConnections)
`useNodeConnections` provides you with an array of connections that are connected to a specific node.
-This composable is especially useful when you want to get all connections (of either type `source` or `target`) of a node
-instead of just the connections of a specific ``.
+This composable is especially useful when you want to get all connections (of either type `source` or `target`) of a node.
```ts
import { type HandleConnection, useNodeConnections } from '@vue-flow/core'
@@ -119,6 +118,10 @@ const sourceConnections = useNodeConnections({
type: 'source',
})
+const handleConnections = useNodeConnections({
+ handleId: 'handle-1', // you can explicitly pass a handle id if you want to get connections of a specific handle
+})
+
const connections = useNodeConnections({
nodeId: '1', // you can explicitly pass a node id, otherwise it's used from the `NodeId injection
type: 'target',
diff --git a/examples/vite/src/Layouting/ProcessNode.vue b/examples/vite/src/Layouting/ProcessNode.vue
index b3110e53a..3e590fe55 100644
--- a/examples/vite/src/Layouting/ProcessNode.vue
+++ b/examples/vite/src/Layouting/ProcessNode.vue
@@ -1,15 +1,15 @@