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.
The documentation page for RecordQueryResult says “…filtered to a useful subset of the records in the table.”
I see that it’s possible to sort and specify which fields are returned but I can’t figure out how to actually filter on selectRecordsAsync.
...
I hesitate to make suggestions here, because of how even the most popular and basic requests have yet to be implemented, but I will anyway.
I would like to be able to execute an HTTP request against values in other fields. This is possible in Excel a...
(This is a copy of my question on Stackoverflow. It’s not getting any attention there so I decided to bring it here.)
First, let me start with what I want to achieve. I want to query a table in Airtable that includes data from a linked table. Airtabl...
The Github site for Airtable.js lacks too much information for beginners. The README explains almost nothing.
However, I did look at the test.html file and was able to make a very basic test of my own. But, other than looking at test.html, how do you...
We’re planning a competition. I’ll have Attendees and Teams. Teams are made up of Attendees (two or four members per team). I want two columns on the Teams table: (1) a count of the number of checked-in members of that team and (2) a total count of m...
Sounds like you'll need to make an automation using the Script action to do that. The script would be triggered upon creation of a new record. It would do a look up of all records, identify the highest value, and write the next highest value into the...
Sure wish there was a “filter” key just like we have “fields” and “sorts”. That would solve this issue and bring a lot of efficiency. Or do it just like it’s done with the HTTP API.
I’m currently looping through all the records I have returned to fin...
Limiting which fields are returned might help. As it is, you’re returning all fields with .selectRecordsAsync(). If you do something like this you might be in better shape.
.selectRecordsAsync({
fields: ["Name", "Description"]
});
You could also t...
I learned one thing from support helped and it was to specifically not include the fields in selectRecordsAsync.
let allRecords = await table.selectRecordsAsync({fields: []});
This is happening to me as well. It’s a performance issue in their Automation platform. I was going to come here to ask if it is possible to throttle the throughput. I’d rather have an automation that completes reliably but is slower than one that ti...