Swift: Column is a value

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.

Examples

With `select()`

try await supabase
  .from("cities")
  .select("name, country_id")
  .is("name", value: nil)