Match only rows where column IS value.
column
value
The name of the column to apply a filter on
The value to match by
response = ( supabase.table("planets") .select("*") .is_("name", "null") .execute() )