Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

v0.2.0

Choose a tag to compare

@RobertCraigie RobertCraigie released this 28 Sep 10:50
· 606 commits to main since this release
5e9c61d

🚨 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)