diff --git a/src/items/items.service.ts b/src/items/items.service.ts index 471ea19..6cc9725 100644 --- a/src/items/items.service.ts +++ b/src/items/items.service.ts @@ -65,6 +65,7 @@ export class ItemsService { async getItemList(cursor: number = 0): Promise { const [items, count] = await this.itemRepository.findAndCount({ + order: { id: 'ASC' }, take: 25, skip: cursor, });