@supabase/postgrest-js 2.105.4 → 2.105.5-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -1374,6 +1374,9 @@ var PostgrestFilterBuilder = class extends PostgrestTransformBuilder {
1374
1374
  /**
1375
1375
  * Match only rows where `column` is not equal to `value`.
1376
1376
  *
1377
+ * This filter does not include rows where `column` is `NULL`. To match null
1378
+ * values, use `.is(column, null)` instead.
1379
+ *
1377
1380
  * @param column - The column to filter on
1378
1381
  * @param value - The value to filter with
1379
1382
  *