Hello,
Given:
var Airtable = require('airtable');
var base = new Airtable({apiKey: 'YOUR_API_KEY'}).base('app6wt6DBFn40vPRg');
base('Project List').select({
// Selecting the first 3 records in Master List:
maxRecords: 3,
view: "Master Li...
kuovonne:
I think there was confusion about maxRecords and pageSize and the total number of records in the table, and I was trying to clarify the differences.
Yeah, that was the issue. Thank you for clarifying.
I need to go through all the rec...
@kuovonne and @Bill.French I appreciate the clarity. I’m brand new to Airtable so even if no definitive answer exists I wanted to make sure I wasn’t overlooking something obvious.