Avetik Sarikyan
Results
2
comments of
Avetik Sarikyan
I think the issue is not with the join but rather with the fact that courierSheet is used as couriersheet so it automatically does toLowerCase() I think which breaks the...
Found the solution const paginator = buildPaginator({ entity: CourierSheet, alias: 'courierSheet', paginationKeys: ['id'], query: { limit: input.limit, order: input.isAsc ? 'ASC' : 'DESC', beforeCursor: input.beforeCursor, afterCursor: input.afterCursor } }) just...