Consider multiple row as single #1401
Unanswered
jay-detroja3
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello Team,
I have a question related pagination.
There is scenario in that i want to retrieve more rows then given number of page size.
For example, There is table which contain 'tid' field. So, for multiple records 'tid' can be same therefor i want to consider that records as one.
So, if i take pagesize = 10, want 10 data but in that same 'tid' record should be consider as one.
Example response : [
2.{}
3.{}
...
10.{},{}
]
like this.
I have got this though simple sqlalchemy pagination but Try to add pagination with this library(Using paginate function) and it gives total 10 record which consider same 'tid' as different.
Beta Was this translation helpful? Give feedback.
All reactions