1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Add table field to Airtable update

This commit is contained in:
Mel O'Hagan 2022-08-09 14:55:45 +01:00
parent 022054389a
commit 3323388b03

View file

@ -63,7 +63,11 @@ module AirtableModule {
type: QueryTypes.FIELDS,
customisable: true,
fields: {
id: {
recordId: {
type: DatasourceFieldTypes.STRING,
required: true,
},
table: {
type: DatasourceFieldTypes.STRING,
required: true,
},
@ -112,13 +116,13 @@ module AirtableModule {
}
}
async update(query: { table: any; id: any; json: any }) {
const { table, id, json } = query
async update(query: { table: any; recordId: any; json: any }) {
const { table, recordId, json } = query
try {
return await this.client(table).update([
{
id,
id: recordId,
fields: json,
},
])