I have a complex where clause that tests if a start and end data fall within a range. I also want to include any row where the object containing the start and end date is missing entirely
SELECT id FROM foo WHERE jsonb_path_exists(criteria::jsonb, '$.date_ranges.dates');
How do I write the inverse? Where the "dates" (or "date_ranges") is absent from the JSON
Cheers