Feb 18, 2021 08:51 AM
Hello,
My app keeps data on my server in sync with changes made to Airtable. My question:
What is the best way to subscribe to record updates when using the blocks API?
The useRecords
hook simply returns all of the table’s records when a record is modified so it doesn’t seem the best way to keep track of updates. It looks as if the best way to do this is to write a custom useWatchable
on all the records of the table so that I receive individual records as they get updated but I’d like to know if there’s a more elegant solution than this.
I’d also like to know if there’s a native way to get notified via callback or event when a new record is created or if I’ll have to keep track of this on my end.
Many thanks
Solved! Go to Solution.
Feb 20, 2021 08:12 AM
I ended up running .watch()
on all the records and saving which records are being watched so that I don’t watch them multiple times. It looks as if this will work for me.
Feb 20, 2021 08:12 AM
I ended up running .watch()
on all the records and saving which records are being watched so that I don’t watch them multiple times. It looks as if this will work for me.