go-postgres-pagination-example
go-postgres-pagination-example copied to clipboard
An example project for pagination in Postgres with Golang
Results
1
go-postgres-pagination-example issues
Sort by
recently updated
recently updated
newest added
This part of the code is incorrect. ``` queryBuilder = queryBuilder.Where(sq.LtOrEq{ "created_time": createdCursor, }) queryBuilder = queryBuilder.Where(sq.Lt{ "id": paymentID, }) ``` I'm not sure how it should look like with...