2017-05-19 90 views
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" 
} 

回答

0

這裏的請求:

FOR i IN FULLTEXT(image, "keywords", "cow") // First search for fulltext 
    FOR cat IN category // Then Loop on all categories 
    FILTER cat.name == "animals" // Filter by name 
    FILTER POSITION(i.categories, cat._id) == true // Join 
    FOR tag IN tags // Then Loop on all tags 
     FILTER tag.name == "photo" // Filter by name 
     FILTER POSITION(i.tags, tag._id) == true // Join 
     RETURN i // Return all images found 

你必須有一個全文索引設置爲您image.keywords場

+0

謝謝你,我會嘗試這一點,並讓你知道 – Gireesh

+0

它的工作原理,謝謝您。 – Gireesh