Match only rows where column IS value. For non-null values, this is equivalent to the eq filter. For null values, use this instead of eq.
column
value
eq
try await supabase .from("cities") .select("name, country_id") .is("name", value: nil)