sassoftware / postgrest-client

General purpose type-safe TypeScript client for PostgREST. Supports select, insert, update, upsert, delete queries with composite joins, resource embedding, full JSON column data handling and typing.
Apache License 2.0
7 stars 0 forks source link

fix: support for null in horizontal filtering #10

Closed bojan88 closed 3 months ago

bojan88 commented 3 months ago

Filtering support for .is('col', null) or is('json->col', null). Turns out that is filter in PostgREST is a very different from other filters, but we were not treating it properly. Also, null should not be allowed in other filters because it's resolved as string.