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

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

Removes vertices along with the edges leading out of them.

**Signature:**

```typescript
delVertex(...vertex: T[]): Graph<T>;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| vertex | T\[\] | Vertices to remove. |


**Returns:**

[Graph](https://imqueue.org/api/pg-sequelize/latest/pg-sequelize.graph/)<T>

This graph, for chaining.

## Remarks

Edges pointing AT a removed vertex are left behind, so other vertices can go on naming one that is gone — and a walk that follows such an edge simply finds no further edges rather than failing.

