pxDot

Results 11 comments of pxDot

Found another issue with count and orderBy queries: ```TS // this === instanceof Query const dbQuery = this.orderBy(field, direction); const [items, total] = await Promise.all([dbQuery.itemsPerPage(itemsPerPage).page(page).find(), dbQuery.count()]); ``` fails with ```...