2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2020-11-18 22:47:26 -08:00
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a document' ,
2022-07-10 13:50:51 -07:00
action : 'Create a document' ,
2020-11-18 22:47:26 -08:00
} ,
{
2022-06-03 10:23:49 -07:00
name : 'Create or Update' ,
2020-11-18 22:47:26 -08:00
value : 'upsert' ,
2022-08-17 08:50:24 -07:00
description :
'Create a new document, or update the current one if it already exists (upsert)' ,
2022-07-10 13:50:51 -07:00
action : 'Create or update a document' ,
2020-11-18 22:47:26 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a document' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a document' ,
2020-11-18 22:47:26 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a document' ,
2022-07-10 13:50:51 -07:00
action : 'Get a document' ,
2020-11-18 22:47:26 -08:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2020-11-18 22:47:26 -08:00
value : 'getAll' ,
2022-09-13 03:36:36 -07:00
description : 'Get many documents from a collection' ,
2022-09-08 08:10:13 -07:00
action : 'Get many documents' ,
2020-11-18 22:47:26 -08:00
} ,
// {
// name: 'Update',
// value: 'update',
// description: 'Update a document',
// },
{
name : 'Query' ,
value : 'query' ,
description : 'Runs a query against your documents' ,
2022-07-10 13:50:51 -07:00
action : 'Query a document' ,
2020-11-18 22:47:26 -08:00
} ,
] ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'create' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'create' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'create' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'create' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'create' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'get' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'get' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'get' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Document ID' ,
name : 'documentId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'get' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'getAll' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'getAll' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'getAll' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'getAll' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'getAll' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'delete' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'delete' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'delete' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Document ID' ,
name : 'documentId' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
operation : [ 'delete' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'upsert' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'upsert' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Collection' ,
name : 'collection' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'upsert' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Collection name' ,
required : true ,
} ,
{
displayName : 'Update Key' ,
name : 'updateKey' ,
type : 'string' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'upsert' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
default : '' ,
description : 'Must correspond to a document ID' ,
required : true ,
placeholder : 'documentId' ,
} ,
{
displayName : 'Columns /Attributes' ,
name : 'columns' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'upsert' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'query' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
2022-08-17 08:50:24 -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/code-examples/expressions/">expression</a>.' ,
2020-11-18 22:47:26 -08:00
required : true ,
} ,
{
displayName : 'Database' ,
name : 'database' ,
type : 'string' ,
default : '(default)' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'query' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'Usually the provided default value will work' ,
required : true ,
} ,
{
displayName : 'Query JSON' ,
name : 'query' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'document' ] ,
operation : [ 'query' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
description : 'JSON query to execute' ,
required : true ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
2022-08-17 08:50:24 -07:00
placeholder :
'{"structuredQuery": {"where": {"fieldFilter": {"field": {"fieldPath": "age"},"op": "EQUAL", "value": {"integerValue": 28}}}, "from": [{"collectionId": "users-collection"}]}}' ,
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 : {
2022-08-17 08:50:24 -07:00
operation : [ 'query' ] ,
resource : [ 'document' ] ,
2020-11-18 22:47:26 -08:00
} ,
} ,
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
] ;