Hi guys, i'm saving json data in the database as a clob field, and indexing all json properties using FieldBridge:
Quote:
myList:[
{"name": test1
"active":false
},
{"name": test2
"active":true
},
{"name": test3
"active":true
},
]
I'm indexing using a custom FieldBridge, using the format:
myList.name
myList.active
If i query to: +name:test1 +active:true will return the object, but it's wrong because the "test1" it's false.
So how can i do the search work individually for each entry of json, do i have to create 3 different documents? How can i create new documents in the FieldBridge implementation?