Accelerated Tables will load all linked rows

In the Accelerated Tables beta, the default is to fetch everything since there is now an API for granular control over partial fetches.

You’ll need to define a fetch_only spec in order to fetch just what you want.

If you have columns: foo, bar, baz and baz is your large simple object column you should do

import anvil.tables.query as q
from anvill.tables import app_tables

app_tables.my_table.search(q.fetch_only("foo", "bar"))

See the announcement for some more details:

1 Like