# query.skip() function · @imqueue/pg-sequelize

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

Deletes properties from an object.

**Signature:**

```typescript
export function skip(obj: any, ...props: string[]): any;
```

## Parameters


| Parameter | Type | Description |
| --- | --- | --- |
| obj | any | Object to strip. |
| props | string\[\] | Property names to delete. |


**Returns:**

any

The same object.

## Remarks

MUTATES what it is given and hands it back, so it composes into a call chain. A falsy argument is returned untouched, which makes it safe on an optional value.

