I want to get the first 200 rows in the table but get this error
anvil.server.SerializationError: Cannot serialize return value from function.
Cannot serialize <class 'anvil._server.LiveObjectProxy.Iter'> object at msg['response'] at [Form1, line 49](javascript:void(0))
@anvil.server.callable
def get_all_rows():
rows = app_tables.reading.search()[0:200]
return rows
How can I get the result as a SearchIterator, not a list of dics?