We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 987e78d commit 59e0b25Copy full SHA for 59e0b25
packages/compass-crud/src/stores/crud-store.ts
@@ -1544,7 +1544,6 @@ class CrudStoreImpl
1544
});
1545
}
1546
1547
- // so this thing
1548
/**
1549
* This function is called when the collection filter changes.
1550
*/
@@ -1573,7 +1572,6 @@ class CrudStoreImpl
1573
1572
has_projection:
1574
!!query.project && Object.keys(query.project).length > 0,
1575
has_skip: (query.skip ?? 0) > 0,
1576
- // here's your has sort
1577
has_sort: !!query.sort && Object.keys(query.sort).length > 0,
1578
has_limit: (query.limit ?? 0) > 0,
1579
has_collation: !!query.collation,
0 commit comments