electrodb 2.12.2 → 2.12.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "electrodb",
3
- "version": "2.12.2",
3
+ "version": "2.12.3",
4
4
  "description": "A library to more easily create and interact with multiple entities and heretical relationships in dynamodb",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/entity.js CHANGED
@@ -343,6 +343,7 @@ class Entity {
343
343
  collection(collection = "", clauses = {}, facets = {}, options = {}) {
344
344
  const chainOptions = {
345
345
  ...options,
346
+ _isPagination: true,
346
347
  _isCollectionQuery: true,
347
348
  };
348
349