eos-sharp icon indicating copy to clipboard operation
eos-sharp copied to clipboard

Get table rows limit

Open varshadqz opened this issue 5 years ago • 0 comments

I wrote web API to get all records of table using:

var result = await eos.GetTableRows(new GetTableRowsRequest() {
    json = true,
    code = "eosio.token",
    scope = "EOS",
    table = "stat"
});

By default, it gives first 10 records only. I know, if I want more I can give limit option parameter. But what if I need all records from a table? What value should I set the limit value to get all records of the table? Please guide.

varshadqz avatar Dec 08 '20 10:12 varshadqz