按照documentation on querying nodes爲neography紅寶石寶石:如何使用neography ruby gem創建neo4j的查詢?
Neography::Node.find(index, query) # advanced query of the node index with the given query
但我不清楚是什麼格式和query
的例子是以上。
我想要做的是提供一個搜索詞然後查詢具有所有節點,作爲屬性之一,userID = xxxx
。
我在grapheneDB上使用託管的neo4j數據庫。
例如,我想找到是相對於給定節點的節點:
- 關係=朋友
- 創建日期=昨天
- 極限= 1
FYI(你可能已經知道),但Neography已經基本放棄了([查看提交歷史] [1])。我絕對建議你檢查出[neo4jrb] [2]以上最小的Neo4j核寶石(即使是neography自述表明neo4jrb)。我在開始使用Neography之前很快做出了轉變,並且對neo4jrb非常滿意。 Neo4j核心將與Neography直接比較。 [1]:https://github.com/maxdemarzi/neography/graphs/contributors [2]:https://github.com/neo4jrb/neo4j – John