2017-08-31 71 views
0

我是一個新手oriental db。我有一個頂點用戶,它具有屬性地址,名稱和另一個頂點具有屬性imagename,date.Both的圖像通過和邊張貼.Now我想編寫一個查詢來選擇具有兩個vertices.How的所有屬性由用戶發佈的所有圖片,我可以寫的查詢來獲取this.I使用orientjs在我的項目Orientdb查詢方法獲取頂點和邊的屬性

回答

1

試試這個:

var OrientDB = require('orientjs'); 
var db = OrientDB({ 
host: 'localhost', 
port: 2424, 
}); 
var db = db.use({ 
name: '<db name>', 
username: '<username>', 
password: '<pwd>' 
}); 
db.query('select address, name, out("postedby").imagename as imagename, out("postedby").date as date from User where name = "<insert a name>" unwind imagename,date') 
.then(function (response) { 
console.log(response); 
}); 
db.close(); 

希望它有幫助

Regards

+0

非常感謝Michela Bonizzi.Exacty我想要什麼。現在我可以開始與Orientdb的旅程 – Wish

相關問題