0
下面是我收集的結構,具有3集,圖像,類別和標籤ArangoDB查詢具有多個屬性和全文搜索
我要過濾像「牛」所有的「圖像」,它具有關鍵字(全文搜索)和屬於「動物」類別,並標記爲「照片」
我該如何使用ARngoDB做這個過濾器,我使用的是nodejs/foxx。請幫忙。
image{
filename:"myphoto.jpg",
filepath:"/opt/data/949b3e6194bf6f0ef3eb367a615826f8"
categories:[category/6401, category/6402],
tags:[tags/1002],
keywords:"photo green cow"
}
category{
_id:'category/6401',
name:"animals"
}
category{
_id:'category/6402',
name:"living things"
}
tags{
_id:'tags/1002',
name:"photo"
}
tags{
_id:'tags/1003',
name:"colors"
}
謝謝你,我會嘗試這一點,並讓你知道 – Gireesh
它的工作原理,謝謝您。 – Gireesh