This app supply a set of commands to search data from MongoDB
The app supply presente the following commands:
- mongoshowdb - lists all databases in MongoDb
- mongoshowcol db= - list all collection in specified database in MongDB
- mongofind db= collection= [''] - presents data in specified database and collection meet optional filter in json format
Example:
| mongoshowdb
lists all databases
| mongoshowcol db=school
list collections in database 'school'
| mongofind db=school collection=scores '{'score': { '$gt': 70 , '$lt': 90} }'
list results whit score grather than 70 and less than 90 in collection scores in database school.
Limits:
- it use only database without authentication
- the filter is in json format
- it use only one MongoDB instance
To Do:
- connect to more MongoDb instance
- configure and use authentication
- accept filter in bson format
- accept filter in SQL format