誰でもそのクエリをmongo for java(org.springframework.data.mongodb.core.MongoOperations)に変換できますか????クエリmongoを春Mongooperationsに変換する
私はこの検索をJavaで取得できませんでした。
ありがとうございます。
db.respostas.aggregate([
{
"$group":{
"_id":{
"per":"$pergunta",
"res":"$resposta"
},
"respostaCount":{
"$sum":1
}
}
},
{
"$group":{
"_id":"$_id.per",
"respostas":{
"$push":{
"resposta":"$_id.res",
"count":"$respostaCount"
}
},
"count":{
"$sum":"$respostaCount"
}
}
},
{
"$sort":{
"count":-1
}
}
])
これまでに試したことを追加してください。私は@Veeramを行う方法がわからないので、 – Veeram
は、私が持っているもの、そういうことだ: '集約AGG = newAggregation( \t \t \tグループ( "pergunta"、 "resposta")として \t \t \t \t .count()。 ( "respostaCount")、 \t \t \tグループ()、 \t \t \tソート(Sort.Direction.DESC、 "カウント") \t); ' – Laisson
、は完全に働いたサンプル文書 – Veeram