# SqlFragment interface · @imqueue/pg-prisma

Source: https://imqueue.org/api/pg-prisma/latest/pg-prisma.sqlfragment/
Published: 2026-08-28
Author: @imqueue maintainers (https://github.com/imqueue)
Package: @imqueue/pg-prisma 2.0.0 — generated reference, not hand-written

A statement and the values bound into it.

**Signature:**

```typescript
export interface SqlFragment 
```

## Remarks

The placeholders are numbered from one across the whole statement, which is what composition has to preserve: a fragment written on its own binds `$1`, and the same fragment spliced third into another binds whatever comes next.

## Properties


| Property | Modifiers | Type | Description |
| --- | --- | --- | --- |
| [text](https://imqueue.org/api/pg-prisma/latest/pg-prisma.sqlfragment.text/) |  | string | The statement, with `$1`-style placeholders. |
| [values](https://imqueue.org/api/pg-prisma/latest/pg-prisma.sqlfragment.values/) |  | unknown\[\] | The values, in placeholder order. |

