# Graph.delEdge() method · @imqueue/pg-sequelize

Source: https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.graph.deledge/
Published: 2026-08-01
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/pg-sequelize 4.2.0 — generated reference, not hand-written

Removes edges from one vertex to others.

**Signature:**

```typescript
delEdge(fromVertex: T, ...toVertex: T[]): Graph<T>;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| fromVertex | T | Vertex to remove edges from. |
| toVertex | T\[\] | Vertices to stop pointing at. |


**Returns:**

[Graph](https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.graph/)<T>

This graph, for chaining.

## Remarks

Every occurrence of each target is removed, so a duplicated edge goes entirely. A vertex with no edges, or one that is not in the graph, is left alone.

