Airtable realtime continuous data sync #1135
-
|
source: https://www.rowy.io/pricing Hi, Please note that I'm not yet PRO Plan but if that way of sync is in progress on roadmap, or in Beta, or released, Best regards, olπ |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
|
Hey @Olmatro, Airtable Import is free for all Rowy users. Here's some documentation on how to import/sync your Airtable data into Rowy: https://docs.rowy.io/import-export-data/import-airtable. Hope this helps! :) |
Beta Was this translation helpful? Give feedback.
-
|
@Olmatro, once you import your data (including your JSON image field) into Rowy, the Derivative function that is set up to generate images would work. Let me explain why... |
Beta Was this translation helpful? Give feedback.
-
|
Sorry I noticed I deleted accidentally the DERIVATIVE Column :( And Here's my DERIVATIVE Code: const derivative:Derivative = async ({row,ref,db,storage,auth,logging})=>{ And Here's the RESULT: If you would , I can share my Airtable with you, based on your mail. Best Regards, olπ |
Beta Was this translation helpful? Give feedback.
-
|
@Olmatro It appears that you are using If you have the URL from Airtable in a column then you can write a code like this to upload the image to Firebase storage, where If you have an image column that you want to upload to Firestore then you use as following, as per the code you have but instead of Let us know if that helps resolve your issue. |
Beta Was this translation helpful? Give feedback.






@Olmatro It appears that you are using
row.thumbnail[0].urlwhich is invalid field.If you have the URL from Airtable in a column then you can write a code like this to upload the image to Firebase storage, where
airtableURLis an URL from your Airtable import.If you have an image column that you want to upload to Firestore then you use as following, as per the code you have but instead of
urlit will bedownloadURL- because you need to pass the URL value to the upload function.Let us know if that helps resolve your issue.