Share your ideas with us
712 results found
-
Better JavaScript support: ASI and multi var
JavaScript makes use of automatic semicolon insertion (ASI), and there are only certain scenarios where they are required. The engine used for the shell integration does not support this, and says scripts are invalid without them.
The same applies to multiple var declarations using commas
var test1 = {}
, test2 = new Date();Perfectly valid in engines such as v8, however the shell states
2015-12-01T16:32:53.208+0000 E QUERY SyntaxError: Unexpected token ,
I've moved from RoboMongo to MongoChef due to lack of support for Mongo v3, and this is something that I sorely miss.
1 vote -
Fast preview of collection statistics
There are a lot of metrics for each collection ("staticstics" option). But it may be handful to show some most important stats (such as document count, size) for each collection in "runtime", without clicking "statistics" option. For example, Robomongo shows it on hover event.
1 vote -
1 vote
-
shortcut
Custom shortcut keys
2 votes -
Ability to add alias to collection name
We have a system name which is managed in application level, and we need a friendly name for each collection to find them easily
3 votes -
Integrated query preview for update/delete
MongoVue integrates a preview option with its update and remove tabs. This is beneficial because, if you change your mind, you can alter your query and see the results without losing or accidentally deleting anything or want to do anything else.
1 vote -
1 vote
-
Treat keypad enter the same as enter
Keyboard shortcuts that use the 'enter' key should work with either 'enter' key (return key or numeric keypad enter). This includes combination shortcuts such as ctrl-enter, etc.
3 votes -
Bug: db.getCollection(‘CollectionName').find({}) doesn't display Id under "Key" column
An alternative way of writing:
db.CollectionName.find({})
1 vote -
Print(object) doesn't work as expected
When executing javascript through the intellishell and printing an object, it just displays [object] rather than the entire object like Robomongo. See code example below:
db.CollectionName.find().forEach(function(doc){
print(doc);
});1 vote -
Icons are not differential enough
They are all black and white. It's not as intuitive as Robomongo to tell the difference between an object, array, and field element.
3 votes -
Change connection of the current tab
We have a lot of databases with the same definition. It would be great to be able to change the current connection of the tab to make the same request on a different database without having to open a new tab paste the query, ..
1 vote -
use docker as intelli-shell
I use docker alot since i switch between various versions of programming platform, mongo etc. I currently am not able to utilize the shell directly from MongoChef due the fact i have no locally available mongo (since its inside a docker image) Are there any plans to move the intelli shell to a docker capabable input? (could even be bundeld on supported platforms?)
2 votes -
Bug: Removing all collections from a databases throws an error box
When the last collection in a databases is removed (on Linux) an error is raised:
Title: Collection operation failed
Content: Database error:{ "serverUsed:" : "ip", "ns" : "namespace", "nIndexesWas" : nIndexes, "ok" : 0.0, "errmsg" : "can't drop system ns", "code" : 20}
The operation seems to succeed, though.
4 votes -
compare two documents
For example you will check the differences between two documents in the same collection.
5 votes -
Create the ability to run a script against serveral servers at the same time
The scenario is running a script to create a user on several test servers. It would be nice to be able to run a script on multiple servers at the same time.
1 vote -
Auto highlight (for copy-paste) by double clicking on an object in the query window
it would highlight the whole item
example:
{fiscalYear:2016,siteId:"eoTjv7m36a2fzkmnQ"}
when I double click on the siteId, it would highlight so I could copy/paste in over that object.2 votes -
Mongostat integration
Would be nice to be able to launch a window with mongostat running against a connection
6 votes -
Ability to add alias to database name
We have a lot of different databases on a cluster.
For security reason and as part of our naming convention databases are a combination of prefix and ID string.
We would like to be able to add an alias to those databases so that the right database can be quickly identified.21 votes -
Duplicate tab using context menu or hotkey
Just like tabs Robomongo and Google Chrome
7 votes
- Don't see your idea?