Hello, It's somehow possible to filter_by just by ...
# community-help
s
Hello, It's somehow possible to filter_by just by having object to exists? Considering following structure:
Copy code
[{
  "name": "My Item 1",
  "value": {
    "deepValue": {
      "something": "anything"
    }
  }
},{
  "name": "My Item 2",
  "value": {}
}]
And I want to filter items which have
deepValue
object on them. Is there any way how to accomplish that or should I create some boolean flag manually?
j
There’s no way to check for the presence of values in Typesense generally. So you would have to add a boolean flag
s
Thank you 🙏 have a nice day :)
👍 1