Skip to content

Commit

Permalink
fix(Contentful Node): Add missing additional fields to entry > get (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Sep 17, 2024
1 parent 430c14a commit c43aef1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions packages/nodes-base/nodes/Contentful/EntryDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
],
},
];

0 comments on commit c43aef1

Please sign in to comment.