We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
d7931a2
isnull
album__name__isnull=True #(sql: album.name is null) album__name__isnull=False #(sql: album.name is not null))
ormar.or_
ormar.and_
books = ( await Book.objects.select_related("author") .filter( ormar.and_( ormar.or_(year__gt=1960, year__lt=1940), author__name="J.R.R. Tolkien", ) ) .all() )
ForeignKey
ManyToMany
ModelDefinition