1
0
Fork 0
mirror of synced 2024-06-30 03:50:37 +12:00

Merge pull request #1268 from Budibase/hotfix/airtable

Allow airtable numRecords arg
This commit is contained in:
Martin McKeaveney 2021-03-10 15:22:54 +00:00 committed by GitHub
commit 1ac6fb5a2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -61,9 +61,11 @@ async function enrichQueryFields(fields, parameters) {
if (typeof fields[key] === "object") {
// enrich nested fields object
enrichedQuery[key] = await enrichQueryFields(fields[key], parameters)
} else {
} else if (typeof fields[key] === "string") {
// enrich string value as normal
enrichedQuery[key] = await processString(fields[key], parameters)
} else {
enrichedQuery[key] = fields[key]
}
}

View file

@ -40,6 +40,10 @@ const SCHEMA = {
type: FIELD_TYPES.STRING,
required: true,
},
numRecords: {
type: FIELD_TYPES.NUMBER,
default: 10,
},
},
},
update: {