我有电话号码部分的数据。因此我将其创建为数组(对象)。但我想现在搜索完整的电话号码。
"Phone":{
"type" : "object",
"properties" : {
"first" : {
"type” : "text"
},
"second": {
"type" : "text"
}
}
}
现在,如果我有三条记录,[{“first”:“123”,“second”=“456”},{“first”:“456”,“second”=“123”},{“first “:”412“,”second“=”356“}]。它应该搜索“123456”,“456123”,“412356”等记录。并且应该为查询“123”提供3条记录。