Skip to Main Content

MongoByte MongoDB Logo

Welcome to the new MongoDB Feedback Portal!

{Improvement: "Your idea"}
We’ve upgraded our system to better capture and act on your feedback.
Your feedback is meaningful and helps us build better products.

ADD NEW FEEDBACK

MongoDB Shell

Showing 36

Have db.table.distinct('column') support cursors

Right now distinct() returns max 100 items and doesn't take into account the config "displayBatchSize". It would be nice if distinct() returned all distinct items.
Guest over 2 years ago in MongoDB Shell 0 Submitted

Save shell commands to the cloud

It would be nice to have a way to save shell commands for later, maybe to the cloud.
Guest over 2 years ago in MongoDB Shell 0 Submitted

Display Atlas cluster name in command prompt, rather than internal slug

When connected to an Atlas cluster, I can see the Atlas internal hostname slug in the command prompt: Atlas atlas-l1ugii-shard-0 [secondary] database_name> It would be easier if this displayed the Atlas hostname, that matches the UI, and in...
Guest almost 3 years ago in MongoDB Shell 0 Submitted

syntax issues

I have to use '.\mongosh' rather than '.\mongo' when using Power Shell windows Might be useful since the switch to mongoshell
Guest over 3 years ago in MongoDB Shell 0 Submitted

remove case sensitivity from tab search of commands

currently `mongosh` uses case sensitive search of command on double tapping the tab key. While it seems adequate at first, entering a capital letter requires 2 key presses and it becomes annoying pretty fast for the good old `mongo` shell users.
Guest over 3 years ago in MongoDB Shell 0 Submitted

Make Load() support Regex Patterns or make a new loadRegex() function

## Problem Statement/Rationale Let's say you have a directory full of scripts. For now, I need to do a load('script path') for each script. Wouldn't it be great if I could do load('*') within the directory, and load them all one after the other...
Guest over 3 years ago in MongoDB Shell 0 Submitted

Add support for AWS SSO when authMechanism is MONGODB-AWS

Currently MONGODB-AWS authentication mechanism doesn't support AWS SSO. User has to manually run `aws sso get-role-credentials` to retrieve the temporary credentials first. All AWS SDK support SSO out of the box, therefore mongosh should add sup...
Guest over 3 years ago in MongoDB Shell 0 Submitted

Change mongosh to process and use arguments only up to a "--" sentinel

Getting command line arguments into mongosh is virtually impossible.  The --eval option insists on printing the last eval expr evaluated to the console despite the --quiet switch.  Allowing a script to self parse and manage any args foll...
Guest over 3 years ago in MongoDB Shell 4 Submitted

Support git command

MongoSh is a developer tool, obviously. So as a developer, git is always a part of it. Supporting git command inside mongosh will help us save a lot of time. Here's some of my implementation: ``` const git = (command) => { try { return execS...
Guest about 4 years ago in MongoDB Shell 0 Submitted

Suggest new feature for loading scripts: loadScript and loadFolder

For loading external script into MongoSh current session, currently we have the `load()` function, which is enough for the task. But I found myself using my own functions instead. So I would like to describe those as suggestion to improve Mon...
Guest about 4 years ago in MongoDB Shell 0 Submitted