Have you ever wondered if you could find a document in MongoDB by clicking at a link in your web admin or other app? Getting the _id, copying it, pasting into your MongoDB admin was the old way of doing it, right?
Now, you can create direct links using our mingo://
protocol that automatically focus Mingo, open a new tab and execute the command you need.
For example, you could add a button in your web admin’s list of users that will find the user in your DB.
Deep link format:
for connection:mingo://{connection}/{database}/documents/{collection}/{query}/{sort}
for project:mingo://{project}/{environment}/documents/{collection}/{query}/{sort}
Formatting notes:
Few examples:
mingo://localhost/mydb/documents/Messages/{user: 'j8niTmhsLAQxnxqjD'}/{createdAt: 1}
mingo://localhost/mydb/documents/Messages/{type: 'updated'}/{createdAt: 1}
mingo://myproject/production/documents/Users/j8niTmhsLAQxnxqjD?useCurrentTab=true