QueryPassthrough
このオプションは、クエリをMongoDB にas-is で渡します。
データ型
bool
デフォルト値
false
解説
True に設定すると、指定されたクエリがMongoDB にそのまま渡されます。現在サポートされているのは以下のshell コマンドのみです。
- db.myCollection.find() returns all fields for all records in the collection.
- db.myCollection.find({ query }) returns all fields for all records in the collection matching the query.
- db.myCollection.find({ query }, { projection }) returns the fields in the projection, for all records matching the query.
- All of the above forms accept a .json() suffix. This returns a single column containing the matching documents as JSON instead of individual fields.