graph-builder
Version:
A graph builder library for modeling abstract graph structures.
19 lines (12 loc) • 543 B
Markdown
[Home](./index) > [graph-builder](./graph-builder.md) > [GraphConnections](./graph-builder.graphconnections.md) > [value](./graph-builder.graphconnections.value.md)
# GraphConnections.value method
Returns the value associated with the edge connecting the origin node to `node`<!-- -->, or undefined if there is no such edge.
**Signature:**
```javascript
value(node: N): V | undefined;
```
**Returns:** `V | undefined`
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| `node` | `N` | |