Managing differences of null values in frappe.db.get_value and frappe.db.get_all

Filtering on NULL values in your code? Well, make sure you note these:
The relevant filter is [“not in”, None] for get_all
and [“is”, “set”] for get_value

1 Like