您好我的映射如下,
"mappings":{
"classes": {
"properties": {
"class": {"type": "integer"},
"students": {
"type": "nested",
"properties": {
"roll_id": {"type": "integer"},
"student_name": {
"type": "nested",
"properties": {
"first_name": { "type": "text" },
"last_name": { "type": "text" }
}
},
"performance_grade": {"type": "text"},
"location": {"type": "text"},
"contact_number": {"type": "integer"},
}
}
}
}
}
我想搜索三个案例:
找到11级成绩为D
找到11级成绩为D级和位置的学生 是'纽约'
找到名字为'Tim'的所有学生。
你可以看到我想过滤学生是否可能?
答案 0 :(得分:0)
您的查询是可能的