{
"name": "Noise-cancelling Bluetooth headphones",
"description": "Wireless Bluetooth headphones with noise-cancelling technology",
"connection": {
"wireless": true,
"type": "Bluetooth"
},
"price": 99.98,
"stock": 25,
"colors": [
"black",
"silver"
],
"embedding": [0.87, -0.15, 0.55, 0.03]
}
I have seen this object in Redis Search documentation and I'm storing similar object with Hash format. How can I make search on if wireless true return with ft.search? I have tried this one but it gives syntax error
await this.client.ft.search(index, `@colors.wireless:"${wirelessStatus}"`);