I'm using an IBM-Blockchain platform VS code extension for one of my POC development. I want pagination on the Query function in fabric. Here is my demo example:
let queryString =
{
"selector": {
"isLink": isLink,
"f_id":f_id
}
}
How can I put pagination (like when 5 data comes on the first page and then continue like another page) on this chaincode selector query which is created on the IBM-Blockchain platform? Can anyone help me?
Thanks.