🐛 Fix bug when updating and deleting records (#1532)

This commit is contained in:
Ricardo Espinoza
2021-03-12 04:23:35 -05:00
committed by GitHub
parent 71e21c2dae
commit 148a94a8bb
2 changed files with 13 additions and 13 deletions

View File

@@ -137,7 +137,7 @@ export class Airtable implements INodeType {
// delete
// ----------------------------------
{
displayName: 'Id',
displayName: 'ID',
name: 'id',
type: 'string',
displayOptions: {
@@ -317,7 +317,7 @@ export class Airtable implements INodeType {
// read
// ----------------------------------
{
displayName: 'Id',
displayName: 'ID',
name: 'id',
type: 'string',
displayOptions: {
@@ -336,7 +336,7 @@ export class Airtable implements INodeType {
// update
// ----------------------------------
{
displayName: 'Id',
displayName: 'ID',
name: 'id',
type: 'string',
displayOptions: {
@@ -499,7 +499,7 @@ export class Airtable implements INodeType {
for (let i = 0; i < items.length; i++) {
id = this.getNodeParameter('id', i) as string;
endpoint = `${application}/${table}/${id}`;
endpoint = `${application}/${table}`;
// Make one request after another. This is slower but makes
// sure that we do not run into the rate limit they have in
@@ -507,9 +507,11 @@ export class Airtable implements INodeType {
// functionality in core should make it easy to make requests
// according to specific rules like not more than 5 requests
// per seconds.
qs.records = [id];
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
returnData.push(responseData);
returnData.push(...responseData.records);
}
} else if (operation === 'list') {
@@ -586,7 +588,6 @@ export class Airtable implements INodeType {
let updateAllFields: boolean;
let fields: string[];
let options: IDataObject;
for (let i = 0; i < items.length; i++) {
updateAllFields = this.getNodeParameter('updateAllFields', i) as boolean;
options = this.getNodeParameter('options', i, {}) as IDataObject;
@@ -616,13 +617,9 @@ export class Airtable implements INodeType {
}
}
if (options.typecast === true) {
body['typecast'] = true;
}
id = this.getNodeParameter('id', i) as string;
endpoint = `${application}/${table}/${id}`;
endpoint = `${application}/${table}`;
// Make one request after another. This is slower but makes
// sure that we do not run into the rate limit they have in
@@ -631,9 +628,11 @@ export class Airtable implements INodeType {
// according to specific rules like not more than 5 requests
// per seconds.
responseData = await apiRequest.call(this, requestMethod, endpoint, body, qs);
const data = { records: [{ id, fields: body.fields }], typecast: (options.typecast) ? true : false };
returnData.push(responseData);
responseData = await apiRequest.call(this, requestMethod, endpoint, data, qs);
returnData.push(...responseData.records);
}
} else {