1
私はrestHeartの残りのAPIを使用してMongoDBを照会するJavaコードを書くためのカスタムコードを避けることができるかどうかを学ぶことを試みています。RestHeart集約
以下のmongoshellクエリを実行しようとしていますが、RestHeartリクエストでどのように記述する必要がありますか?
db.getCollection('InsStatData').aggregate({'$match':{'$and':[{ 'sectionName': 'ASSETS'},{'year':2015},{ 'sections.data.rowIdx': 1},{'sections.data.values.colIdx':2}]}},
{ '$unwind': '$sections' },
{ '$unwind': '$sections.data' },
{ '$unwind': '$sections.data.values' },
{'$match':{'$and':[{ 'sectionName': 'ASSETS'},{'year':2015},{
'sections.data.rowIdx': 1},{'sections.data.values.colIdx':2}]}}
)
InsStatDataはcollecitonNameです。
https://softinstigate.atlassian.net/wiki/x/AwDwありがとう詳細は、このマニュアルページを参照してください。情報が助けになりました。 – Abhinav1singhal