The Community will be temporarily unavailable starting on Friday February 28. We’ll be back as soon as we can! To learn more, check out our Announcements blog post.
A Quick Prelude
This morning, I was blankly staring past my monitors in a strange state of disassociation.
On my screen was the commit history of a substantial git repo.
While clearing out stale branches, I went down the rabbit hole of examining eac...
Hey @Conor_McKeever! As Adam called out, when retrieving the value of Airtable's Linked Record field type from the Scripting API, the field returns an array of objects with the following shape:{ id: string, name: string }The ID property is the record...
Hey @JRMunoz! Here you go:const tableId = "your_table_id";
const table = base.getTable(tableId);
const fields = {
yourFieldName: "your_field_id"
}
//Load all records from the table
//Returns an array of record objects.
const records = await table...
Hey @hhspiel!I just want to confirm that the preceding a), b), c), etc. values are not a part of the included options.When using the equality comparison operator in Airtable, strict equality is used, meaning that even trailing or leading whitespace w...
This is a solid batch of updates. Really appreciate the work on this release!I wanted to call out two behaviors of conditional field and group visibility that really limit my ability to craft the types of Interface-driven experiences that I really wa...
Hey @jdavis! Airtable's Scripting Extension editor is built using Microsoft's Monaco Editor library, which provides developers with a bunch of really helpful tools.If I'm understanding your post correctly, you're trying to fold all the functions with...