Hi everyone!
I need to generate the documentation of an Airtable database and I was able to use the script below, but it would be much more useful and efficient if the output were in an Airtable table (which I could easily update daily or weekly thanks to an automation).
Obviously I could go ahead & code all this, but I’m quite slow with JS (rather a SQL/Python kind of guy) and was wondering if someone had already gone through the trouble…
for (const table of base.tables) {
output.text(table.name);
output.text(table.id);
output.table(table.fields);
output.table(table.views);
}
In a perfect world, I would also love to find a way to programmatically update table and field descriptions: I am migrating data from other tools to Airtable to create beautiful workflows and I’d like to reuse existing docs to update all object’s desc at once instead of manually updating descs. table by table, field by field.
Does anyone know anything / have an idea how I could do that (without spending more time than with a manual update :grinning_face_with_big_eyes: ).
Best,
Ludo