> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wherobots.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ST_DumpPoints

Returns list of Points which geometry consists of.

<img src="https://mintcdn.com/wherobots/fqh3gPDE0J25Lra_/images/sql-functions/ST_DumpPoints/ST_DumpPoints.svg?fit=max&auto=format&n=fqh3gPDE0J25Lra_&q=85&s=75c4b02c31d42c440281cad7a1c13c6d" alt="ST_DumpPoints" width="500" height="300" data-path="images/sql-functions/ST_DumpPoints/ST_DumpPoints.svg" />

## Signatures

```sql theme={"system"}
ST_DumpPoints(geom: Geometry)
```

## Parameters

<ParamField body="geom" type="Geometry" required>
  The input geometry.
</ParamField>

## Return type

<ResponseField type="Array<Geometry>">
  The resulting geometry.
</ResponseField>

## Example

```sql theme={"system"}
SELECT ST_DumpPoints(ST_GeomFromText('LINESTRING (0 0, 1 1, 1 0)'))
```

```
[POINT (0 0), POINT (0 1), POINT (1 1), POINT (1 0), POINT (0 0)]
```
