Skip to content

v2.0.20 - ✨ Adding support for `None` values in where

Compare
Choose a tag to compare
@abstra-bot abstra-bot released this 26 Feb 23:37
· 1062 commits to master since this release

Before

from abstra.tables import select

select("users", where={"organization_id": None}) # raise error since there was no support for None

After

from abstra.tables import select

select("users", where={"organization_id": None}) # SELECT * FROM users WHERE organization_id IS NULL

This same release also adds support for None values in insert and update methods.