This repository was archived by the owner on May 17, 2021. It is now read-only.
Releases: mongodb-js/compass-import-export
Releases · mongodb-js/compass-import-export
v5.2.3
- fix: Add mongodb-query-parser and use its stringify COMPASS-4481 (#227) cd5dea8
v5.2.0
v5.1.22
- fix: Do not auto-convert string values to boolean COMPASS-4466 (#221) 9b54b9c
- feat: Pre-fill export filename with collection name (#211) 4b377fe
v4.1.2
Instead of the query viewer containing only the query predicate:
{}
We now display a shell snippet that includes skip/limit/project set in the query bar, in addition, to the predicate:
db.pets.find(
{name:'Arlo'},
{name:1}
).limit(100).skip(0)
Unspecified spec props are not displayed. For example, if query and project are specified but not skip or limit, the resulting output is:
db.pets.find(
{name:'Arlo'},
{name:1}
)
See #7