Skip to content
This repository was archived by the owner on May 17, 2021. It is now read-only.

Releases: mongodb-js/compass-import-export

v5.2.3

03 Dec 07:39
281a825
Compare
Choose a tag to compare

v5.2.2...v5.2.3

v5.2.0

16 Nov 15:29
d639193
Compare
Choose a tag to compare

This release introduces mongodb-schema that parse 50 sampled documents before displaying fields to be exported.

v5.1.22

12 Nov 13:38
cc3f9d7
Compare
Choose a tag to compare

v5.1.21...v5.1.22

v4.1.2

05 Nov 14:39
Compare
Choose a tag to compare

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