rafaelwendel / phpsupabase

PHP Client to use Supabase
MIT License
187 stars 18 forks source link

Timestamp is not null #5

Closed sharkstate closed 2 years ago

sharkstate commented 2 years ago

Is it possible using the QueryBuilder to query Timestamps for not null? I tried:

->where('DATE','is.not null')

and

->where('DATE','not.null')

rafaelwendel commented 2 years ago

Hi sharkstate,

Of course it's possible. Use the not.is operator.

->where('date', 'not.is.NULL')

=)