I have the following structure :
{
"FiledA" : "FiledAValue",
"FiledB" : "FiledBValue",
"FiledC" : {
"X" : "XValue",
"Y" : "YValue",
"Z" : "ZValue"
},
}
- FiledC content may be dynamic (other fileds than x,y,z)
- The user will send a query like
{"FiledA" : "12" , "FiledC" : "333"}
The query should match 12 for FiledA and if there any FiledC which one of its filds contains 333
How I can solve the FiledC issue in a query ?
Thanks in advance ...