标签: elasticsearch solr search-engine
我的docs上有一个int id字段和一个嵌套的int数组id字段。我想找到基于给定文档的id列表中不存在的id字段的文档。
示例:
[{ my_id: 1, other_ids: [2,3] },{ my_id: 2, other_ids: [1] },{ my_id: 3, other_ids: [2] }]
TY。