File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -500,12 +500,12 @@ The compiled SQL depends on the GraphQL operator used and the underlying Postgre
500500
501501For 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
You can’t perform that action at this time.
0 commit comments