UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

94 lines 2.78 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.collectionFields = exports.collectionOperations = void 0; exports.collectionOperations = [ { displayName: 'Operation', name: 'operation', type: 'options', noDataExpression: true, displayOptions: { show: { resource: ['collection'], }, }, options: [ { name: 'Get Many', value: 'getAll', description: 'Get many root collections', action: 'Get many collections', }, ], default: 'getAll', }, ]; exports.collectionFields = [ /* -------------------------------------------------------------------------- */ /* collection:getAll */ /* -------------------------------------------------------------------------- */ { displayName: 'Project Name or ID', name: 'projectId', type: 'options', default: '', typeOptions: { loadOptionsMethod: 'getProjects', }, displayOptions: { show: { resource: ['collection'], operation: ['getAll'], }, }, description: 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.', required: true, }, { displayName: 'Database', name: 'database', type: 'string', default: '(default)', displayOptions: { show: { resource: ['collection'], operation: ['getAll'], }, }, description: 'Usually the provided default value will work', required: true, }, { displayName: 'Return All', name: 'returnAll', type: 'boolean', default: false, displayOptions: { show: { resource: ['collection'], operation: ['getAll'], }, }, description: 'Whether to return all results or only up to a given limit', required: true, }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { resource: ['collection'], operation: ['getAll'], returnAll: [false], }, }, typeOptions: { minValue: 1, maxValue: 500, }, default: 100, description: 'Max number of results to return', }, ]; //# sourceMappingURL=CollectionDescription.js.map