Python から新しい Aggregate フレームワークを使用しようとすると、次のメッセージが表示されました。
OperationFailure: command SON([('aggregate', 'call_log'), ('pipeline', [{'$project': {u'date': '1', u'status': '1', u'number': '1', u'description': '1'}}])]) failed: exception: field path references must be prefixed with a '$' ("1"
Python のコード:
db.command('aggregate', 'test_collection', pipe_line=[{'$project':{u'date': '1', u'status': '1', u'number': '1', u'description': '1'}}])
このメッセージはどういう意味ですか? エラーはどこにありますか?
ありがとう!