5
Bu tür bir sorguyu nasıl dönüştürürüm? Parametre nestedPath
olduğunuElasticSearch Java İstemci iç içe geçmiş nesneleri sorgulama
Map<String, String> propertyValues = new HashMap<String, String>();
propertyValues.put("consultations.prescriptions", "alfuorism");
propertyValues.put("consultations.Diagnosis", "Fever");
: Java Client sorgusu için
{
"query": {
"nested": {
"path": "consultations",
"query": {
"bool": {
"must": [
{
"match": {
"consultations.prescriptions": "alfuorism"
}
},
{
"match": {
"consultations.Diagnosis": "Fever"
}
}
]
}
}
}
}
}
kullanarak QueryBuilders