You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
I wrote web API to get all records of table using:
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 thelimit
value to get all records of the table? Please guide.The text was updated successfully, but these errors were encountered: