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 []
While indexing a field of bool type eg:
and while trying to list all entity
SomeModel.find().all()return []