You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
long: 'All queries executed from the query bar will apply this sort.',
634
+
long: 'All queries executed from the query bar will apply this sort. Not available for views and timeseries.',
635
+
longReact: (
636
+
<>
637
+
All queries executed from the query bar will apply this sort.{' '}
638
+
<strong>Not available for views and timeseries.</strong>
639
+
</>
640
+
),
634
641
options: {
635
642
'': {
636
-
label: '$natural: 1 (MongoDB server default)',
637
-
description: 'in natural order of documents',
638
-
},
639
-
'{ $natural: -1 }': {
640
-
label: '$natural: -1',
641
-
description: 'in reverse natural order of documents',
643
+
label: 'MongoDB server default',
644
+
description: 'Return documents in natural order of documents',
642
645
},
643
646
'{ _id: 1 }': {
644
647
label: '_id: 1',
645
-
description: 'in ascending order by id',
648
+
description: 'Return documents in ascending order by id',
646
649
},
647
650
'{ _id: -1 }': {
648
651
label: '_id: -1',
649
-
description: 'in descending order by id',
652
+
description: 'Return documents in in descending order by id',
653
+
},
654
+
'{ $natural: -1 }': {
655
+
label: '$natural: -1',
656
+
description:
657
+
'Return documents in reverse natural order, but ignores existing indexes. ⚠️ Suitable if you use Compass only with development clusters. Avoid this option if you connect to production clusters as well.',
0 commit comments