fix(Contentful Node): Add missing additional fields to entry > get (#10830)

This commit is contained in:
Jon 2024-09-17 16:28:48 +01:00 committed by GitHub
parent 430c14ad19
commit c43aef1a26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -189,4 +189,26 @@ export const fields: INodeProperties[] = [
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
displayOptions: {
show: {
resource: [resource.value],
operation: ['get'],
},
},
options: [
{
displayName: 'RAW Data',
name: 'rawData',
type: 'boolean',
default: false,
description: 'Whether the data should be returned RAW instead of parsed',
},
],
},
];