Is it possible to fetch all records from the entire base without needing to pick a single table?
I’m creating a To-Do list app that’s pretty much like the example provided by Airtable.
We have multiple tables organized by “Offices” like for example “Development”, “Design”, “Marketing” and so on. Each record is a Task.
Our goal is to simply display all Records in the App that are not marked as Completed so our manager can easily go through those tasks in one place.
The useRecords
method requires a Table to be passed as an argument so I thought of maybe looping through all tables and then fetching those records but then I figured that this would make the app not reactive…
So… Is this possible? If not, do you have any suggestions of how I could accomplish this? We sure don’t want our manager to have to select which table he’ll be working on since that’s irrelevant to him…
Thanks for your help!