graph-builder
Version:
A graph builder library for modeling abstract graph structures.
21 lines (13 loc) • 981 B
Markdown
[Home](./index) > [graph-builder](./graph-builder.md) > [ValueGraphBuilder](./graph-builder.valuegraphbuilder.md) > [from](./graph-builder.valuegraphbuilder.from.md)
# ValueGraphBuilder.from method
Returns a [ValueGraphBuilder](./graph-builder.valuegraphbuilder.md) initialized with all properties queryable from `graph`<!-- -->.
<p>The "queryable" properties are those that are exposed through the [ValueGraph](./graph-builder.valuegraph.md) interface, such as [BaseGraph.isDirected](./graph-builder.basegraph.isdirected.md)<!-- -->. Other properties, such as [ValueGraphBuilder.expectedNodeCount](./graph-builder.valuegraphbuilder.expectednodecount.md)<!-- -->, are not set in the new builder.
**Signature:**
```javascript
static from<N, V>(graph: ValueGraph<N, V>): ValueGraphBuilder<N, V>;
```
**Returns:** `ValueGraphBuilder<N, V>`
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| `graph` | `ValueGraph<N, V>` | |