2020-11-18 22:47:26 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const documentOperations : INodeProperties [ ] = [
2020-11-18 22:47:26 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2020-11-18 22:47:26 -08:00
displayOptions : {
show : {
resource : [
'document' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a document' ,
} ,
{
2022-06-03 10:23:49 -07:00
name : 'Create or Update' ,
2020-11-18 22:47:26 -08:00
value : 'upsert' ,
2022-05-20 14:47:24 -07:00
description : 'Create a new document, or update the current one if it already exists (upsert)' ,
2020-11-18 22:47:26 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a document' ,
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a document' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all documents from a collection' ,
} ,
// {
// name: 'Update',
// value: 'update',
// description: 'Update a document',
// },
{
name : 'Query' ,
value : 'query' ,
description : 'Runs a query against your documents' ,
} ,
] ,
default : 'get' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-11-18 22:47:26 -08:00
2021-12-03 00:44:16 -08:00
export const documentFields : INodeProperties [ ] = [
2020-11-18 22:47:26 -08:00
/* -------------------------------------------------------------------------- */
/* document:create */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Columns / Attributes' ,
2020-11-18 22:47:26 -08:00
name : 'columns' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
description : 'List of attributes to save' ,
required : true ,
placeholder : 'productId, modelName, description' ,
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-11-18 22:47:26 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-11-18 22:47:26 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* document:get */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Document ID' ,
name : 'documentId' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : '' ,
required : true ,
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-11-18 22:47:26 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-11-18 22:47:26 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* document:getAll */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 100 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2020-11-18 22:47:26 -08:00
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-11-18 22:47:26 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-11-18 22:47:26 -08:00
} ,
/* -------------------------------------------------------------------------- */
/* document:delete */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Document ID' ,
name : 'documentId' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : '' ,
required : true ,
} ,
// /* ---------------------------------------------------------------------- */
// /* document:update */
// /* -------------------------------------------------------------------------- */
// {
// displayName: 'Project ID',
// name: 'projectId',
// type: 'options',
// default: '',
// typeOptions: {
// loadOptionsMethod: 'getProjects',
// },
// displayOptions: {
// show: {
// resource: [
// 'document',
// ],
// operation: [
// 'update',
// ],
// },
// },
// description: 'As displayed in firebase console URL',
// required: true,
// },
// {
// displayName: 'Database',
// name: 'database',
// type: 'string',
// default: '(default)',
// displayOptions: {
// show: {
// resource: [
// 'document',
// ],
// operation: [
// 'update',
// ],
// },
// },
// description: 'Usually the provided default value will work',
// required: true,
// },
// {
// displayName: 'Collection',
// name: 'collection',
// type: 'string',
// default: '',
// displayOptions: {
// show: {
// resource: [
// 'document',
// ],
// operation: [
// 'update',
// ],
// },
// },
// description: 'Collection name',
// required: true,
// },
// {
// displayName: 'Update Key',
// name: 'updateKey',
// type: 'string',
// displayOptions: {
// show: {
// resource: [
// 'document',
// ],
// operation: [
// 'update',
// ],
// },
// },
// default: '',
// description: 'Must correspond to a document ID',
// required: true,
// placeholder: 'documentId',
// },
// {
// displayName: 'Columns /Attributes',
// name: 'columns',
// type: 'string',
// default: '',
// displayOptions: {
// show: {
// resource: [
// 'document',
// ],
// operation: [
// 'update',
// ],
// },
// },
// description: 'Columns to insert',
// required: true,
// placeholder: 'age, city, location',
// },
// {
// displayName: 'Simple',
// name: 'simple',
// type: 'boolean',
// displayOptions: {
// show: {
// operation: [
// 'update',
// ],
// resource: [
// 'document',
// ],
// },
// },
// default: true,
// description: 'When set to true a simplify version of the response will be used else the raw data.',
// },
/* -------------------------------------------------------------------------- */
/* document:upsert */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Update Key' ,
name : 'updateKey' ,
type : 'string' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
default : '' ,
description : 'Must correspond to a document ID' ,
required : true ,
placeholder : 'documentId' ,
} ,
{
displayName : 'Columns /Attributes' ,
name : 'columns' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'upsert' ,
] ,
} ,
} ,
description : 'Columns to insert' ,
required : true ,
placeholder : 'age, city, location' ,
} ,
/* -------------------------------------------------------------------------- */
/* document:query */
/* -------------------------------------------------------------------------- */
{
2022-06-03 10:23:49 -07:00
displayName : 'Project Name or ID' ,
2020-11-18 22:47:26 -08:00
name : 'projectId' ,
type : 'options' ,
default : '' ,
typeOptions : {
loadOptionsMethod : 'getProjects' ,
} ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'query' ,
] ,
} ,
} ,
2022-06-03 10:23:49 -07:00
description : 'As displayed in firebase console URL. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'query' ,
] ,
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Query JSON' ,
name : 'query' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
resource : [
'document' ,
] ,
operation : [
'query' ,
] ,
} ,
} ,
description : 'JSON query to execute' ,
required : true ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
placeholder : '{"structuredQuery": {"where": {"fieldFilter": {"field": {"fieldPath": "age"},"op": "EQUAL", "value": {"integerValue": 28}}}, "from": [{"collectionId": "users-collection"}]}}' ,
} ,
{
2022-05-20 14:47:24 -07:00
displayName : 'Simplify' ,
2020-11-18 22:47:26 -08:00
name : 'simple' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'query' ,
] ,
resource : [
'document' ,
] ,
} ,
} ,
default : true ,
2022-05-20 14:47:24 -07:00
description : 'Whether to return a simplified version of the response instead of the raw data' ,
2020-11-18 22:47:26 -08:00
} ,
2021-12-03 00:44:16 -08:00
] ;