redis-om-python icon indicating copy to clipboard operation
redis-om-python copied to clipboard

find().all() returns empty list if a field of type bool is indexed

Open Sreesanth46 opened this issue 8 months ago • 0 comments

While indexing a field of bool type eg:

class SomeModel(JsonModel):
   ...somefields
   is_delelted: bool = Field(index=True)
   class Meta:
      ...

and while trying to list all entity

SomeModel.find().all() return []

Sreesanth46 avatar Oct 25 '23 08:10 Sreesanth46