I know there is getView(‘ViewName’) to retrieve a particuilar view of a table, but what if you don’t know the name of a view, or how many views there are?
Is there a way to fetch ALL the views of a given table? Something like this:
let table = base.getTable("TableName");
let allViews = table.getAllViews(); // something like this?
output.inspect(allViews);
I have a custom Vue app and want to display a table’s records and then populate a navbar with all the views so a user can click links to switch the table view.