How do I get rows from the current view using base.query(...) the same way that base.list_rows(...) can?

since ill be working with a slightly larger amount of rows and the documentation recommends to use sql queries for that, I was curious if there was a way to “filter” by view using the python api, but not:
base.list_rows(table_name, view_name=None, order_by=None, desc=False, start=None, limit=None)

im open to any ideas on how to achieve this, thank you

The query endpoint does not support views.

Please use the SQL WHERE clause to filter as described in the documentation.

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.