PyMongoを使用して、次のように「number」フィールドと「date」フィールドでソートされたオブジェクトを取得しようとすると、次のようになります。
db.test.find({"number": {"$gt": 1}}).sort({"number": 1, "date": -1})
このエラーが発生します:
TypeError: if no direction is specified, key_or_list must be an instance of list
ソートクエリの何が問題になっていますか?