mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Minor improvements to Quickbase Node
This commit is contained in:
@@ -69,7 +69,7 @@ export const recordFields = [
|
||||
description: 'The table identifier',
|
||||
},
|
||||
{
|
||||
displayName: 'Insert Fields',
|
||||
displayName: 'Columns',
|
||||
name: 'columns',
|
||||
type: 'string',
|
||||
displayOptions: {
|
||||
@@ -87,25 +87,6 @@ export const recordFields = [
|
||||
placeholder: 'Select Fields...',
|
||||
description: 'Comma separated list of the properties which should used as columns for the new rows.',
|
||||
},
|
||||
{
|
||||
displayName: 'Use Field IDs',
|
||||
name: 'useFieldIDs',
|
||||
type: 'boolean',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'record',
|
||||
],
|
||||
operation: [
|
||||
'create',
|
||||
'upsert',
|
||||
'update'
|
||||
],
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'Use Field IDs instead of Field Names in Insert Fields.',
|
||||
},
|
||||
{
|
||||
displayName: 'Simplified Response',
|
||||
name: 'simple',
|
||||
@@ -152,7 +133,14 @@ export const recordFields = [
|
||||
},
|
||||
default: [],
|
||||
description: `Specify an array of field ids that will return data for any updates or added record. Record ID (FID 3) is always returned if any field ID is requested.`,
|
||||
}
|
||||
},
|
||||
{
|
||||
displayName: 'Use Field IDs',
|
||||
name: 'useFieldIDs',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Use Field IDs instead of Field Names in Columns.',
|
||||
},
|
||||
],
|
||||
},
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -443,6 +431,13 @@ export const recordFields = [
|
||||
default: [],
|
||||
description: `Specify an array of field ids that will return data for any updates or added record. Record ID (FID 3) is always returned if any field ID is requested.`,
|
||||
},
|
||||
{
|
||||
displayName: 'Use Field IDs',
|
||||
name: 'useFieldIDs',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Use Field IDs instead of Field Names in Columns.',
|
||||
},
|
||||
// {
|
||||
// displayName: 'Merge Field ID',
|
||||
// name: 'mergeFieldId',
|
||||
@@ -583,6 +578,13 @@ export const recordFields = [
|
||||
default: [],
|
||||
description: `Specify an array of field ids that will return data for any updates or added record. Record ID (FID 3) is always returned if any field ID is requested.`,
|
||||
},
|
||||
{
|
||||
displayName: 'Use Field IDs',
|
||||
name: 'useFieldIDs',
|
||||
type: 'boolean',
|
||||
default: false,
|
||||
description: 'Use Field IDs instead of Field Names in Columns.',
|
||||
},
|
||||
],
|
||||
},
|
||||
] as INodeProperties[];
|
||||
|
||||
Reference in New Issue
Block a user