Skip to content

Commit 469a57b

Browse files
authored
docs(README): fix dollar signs
1 parent 4d67efc commit 469a57b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -500,12 +500,12 @@ The compiled SQL depends on the GraphQL operator used and the underlying Postgre
500500

501501
For example, here is how the `equalTo`/`equalToInsensitive` operators compile to SQL:
502502

503-
| GraphQL operator | PostgreSQL column type | Compiled SQL |
504-
| ------------------ | ----------------------- | ------------------------ |
505-
| equalTo | `text`/`varchar`/`char` | <col> = $1 |
506-
| equalTo | `citext` | <col>::text = $1::text |
507-
| equalToInsensitive | `text`/`varchar`/`char` | lower(<col>) = lower($1) |
508-
| equalToInsensitive | `citext` | <col> = $1 |
503+
| GraphQL operator | PostgreSQL column type | Compiled SQL |
504+
| ------------------ | ----------------------- | -------------------------- |
505+
| equalTo | `text`/`varchar`/`char` | `<col> = $1` |
506+
| equalTo | `citext` | `<col>::text = $1::text` |
507+
| equalToInsensitive | `text`/`varchar`/`char` | `lower(<col>) = lower($1)` |
508+
| equalToInsensitive | `citext` | `<col> = $1` |
509509

510510
</details>
511511

0 commit comments

Comments
 (0)