This repository was archived by the owner on Apr 15, 2025. It is now read-only.
v0.2.0
🚨 This release contains breaking changes 🚨
Filtering field types by NOT and IN has been renamed to not and in.
For example:
post = await client.post.find_first(
where={
'title': {
'NOT': 'Exclude title',
},
},
)Must now be written as:
post = await client.post.find_first(
where={
'title': {
'not': 'Exclude title',
},
},
)Bug fixes
- Fixes filtering records by
NOT(#70)