2023-01-27 03:22:44 -08:00
import type { INodeProperties , INodePropertyOptions } from 'n8n-workflow' ;
2020-07-09 02:36:28 -07:00
export const resource = {
name : 'Entry' ,
2020-08-04 12:07:54 -07:00
value : 'entry' ,
2020-07-09 02:36:28 -07:00
} as INodePropertyOptions ;
2021-12-03 00:44:16 -08:00
export const operations : INodeProperties [ ] = [
2020-07-09 02:36:28 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-07-09 02:36:28 -07:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ resource . value ] ,
2020-08-04 12:07:54 -07:00
} ,
2020-07-09 02:36:28 -07:00
} ,
options : [
{
2020-08-04 12:07:54 -07:00
name : 'Get' ,
value : 'get' ,
2020-07-09 02:36:28 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-08-04 12:07:54 -07:00
value : 'getAll' ,
} ,
2020-07-09 02:36:28 -07:00
] ,
2020-08-04 12:07:54 -07:00
default : 'get' ,
2020-10-22 06:46:03 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-07-09 02:36:28 -07:00
2021-12-03 00:44:16 -08:00
export const fields : INodeProperties [ ] = [
2020-07-09 02:36:28 -07:00
{
2020-08-04 12:07:54 -07:00
displayName : 'Environment ID' ,
name : 'environmentId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ resource . value ] ,
operation : [ 'get' , 'getAll' ] ,
2020-08-04 12:07:54 -07:00
} ,
} ,
default : 'master' ,
2022-08-01 13:47:55 -07:00
description :
'The ID for the Contentful environment (e.g. master, staging, etc.). Depending on your plan, you might not have environments. In that case use "master".' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
2020-07-09 02:36:28 -07:00
type : 'boolean' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'getAll' ] ,
resource : [ resource . value ] ,
2020-08-04 12:07:54 -07:00
} ,
} ,
default : false ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-07-09 02:36:28 -07:00
} ,
{
2020-08-04 12:07:54 -07:00
displayName : 'Limit' ,
name : 'limit' ,
2020-07-09 02:36:28 -07:00
type : 'number' ,
2020-08-04 12:07:54 -07:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
operation : [ 'getAll' ] ,
resource : [ resource . value ] ,
returnAll : [ false ] ,
2020-08-04 12:07:54 -07:00
} ,
} ,
2020-07-09 02:36:28 -07:00
typeOptions : {
2020-08-04 12:07:54 -07:00
minValue : 1 ,
maxValue : 500 ,
2020-07-09 02:36:28 -07:00
} ,
2020-08-04 12:07:54 -07:00
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
2020-07-09 02:36:28 -07:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ resource . value ] ,
operation : [ 'getAll' ] ,
2020-08-04 12:07:54 -07:00
} ,
} ,
options : [
{
displayName : 'Content Type ID' ,
name : 'content_type' ,
type : 'string' ,
default : '' ,
description : 'To search for entries with a specific content type' ,
} ,
{
displayName : 'Equal' ,
name : 'equal' ,
type : 'string' ,
default : '' ,
placeholder : 'fields.title=n8n' ,
2022-08-01 13:47:55 -07:00
description :
'Search for all data that matches the condition: {attribute}={value}. Attribute can use dot notation.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Exclude' ,
name : 'exclude' ,
type : 'string' ,
default : '' ,
placeholder : 'fields.tags[nin]=accessories,flowers' ,
2022-08-01 13:47:55 -07:00
description :
'Search for all data that matches the condition: {attribute}[nin]={value}. Attribute can use dot notation.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Exist' ,
name : 'exist' ,
type : 'string' ,
default : '' ,
placeholder : 'fields.tags[exists]=true' ,
2022-08-01 13:47:55 -07:00
description :
'Search for all data that matches the condition: {attribute}[exists]={value}. Attribute can use dot notation.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Fields' ,
name : 'select' ,
type : 'string' ,
placeholder : 'fields.title' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'The select operator allows you to choose what fields to return from an entity. You can choose multiple values by combining comma-separated operators.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Include' ,
name : 'include' ,
type : 'string' ,
default : '' ,
placeholder : 'fields.tags[in]=accessories,flowers' ,
2022-08-01 13:47:55 -07:00
description :
'Search for all data that matches the condition: {attribute}[in]={value}. Attribute can use dot notation.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Not Equal' ,
name : 'notEqual' ,
type : 'string' ,
default : '' ,
placeholder : 'fields.title[ne]=n8n' ,
2022-08-01 13:47:55 -07:00
description :
'Search for all data that matches the condition: {attribute}[ne]={value}. Attribute can use dot notation.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Order' ,
name : 'order' ,
type : 'string' ,
default : '' ,
placeholder : 'sys.createdAt' ,
2022-08-01 13:47:55 -07:00
description :
'You can order items in the response by specifying the order search parameter. You can use sys properties (such as sys.createdAt) or field values (such as fields.myCustomDateField) for ordering.' ,
2020-08-04 12:07:54 -07:00
} ,
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'Full-text search is case insensitive and might return more results than expected. A query will only take values with more than 1 character.' ,
2020-08-04 12:07:54 -07:00
} ,
2020-08-28 08:37:39 -07:00
{
displayName : 'RAW Data' ,
name : 'rawData' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether the data should be returned RAW instead of parsed' ,
2020-08-28 08:37:39 -07:00
} ,
2020-08-04 12:07:54 -07:00
] ,
2020-07-09 02:36:28 -07:00
} ,
{
2020-08-04 12:07:54 -07:00
displayName : 'Entry ID' ,
name : 'entryId' ,
2020-07-09 02:36:28 -07:00
type : 'string' ,
default : '' ,
required : true ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ resource . value ] ,
operation : [ 'get' ] ,
2020-08-04 12:07:54 -07:00
} ,
} ,
2020-08-28 07:28:02 -07:00
} ,
2021-12-03 00:44:16 -08:00
] ;