@merkl/api 0.15.44 → 0.15.45
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.
@@ -46,7 +46,7 @@ export class ProtocolRepository {
|
|
46
46
|
static async findMany(query) {
|
47
47
|
const { page: _page, items: _items } = query;
|
48
48
|
const page = _page ? _page : 0;
|
49
|
-
const items = _items ? _items :
|
49
|
+
const items = _items ? _items : 500;
|
50
50
|
const args = ProtocolRepository.#transformQueryToPrismaFilters(query);
|
51
51
|
return await apiDbClient.protocol.findMany({
|
52
52
|
take: items,
|