first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,212 @@
import type { INodeProperties } from 'n8n-workflow';
export const boardColumnOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['boardColumn'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create a new column',
action: 'Create a board column',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many columns',
action: 'Get many board columns',
},
],
default: 'create',
},
];
export const boardColumnFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* boardColumn:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['boardColumn'],
operation: ['create'],
},
},
},
{
displayName: 'Title',
name: 'title',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardColumn'],
operation: ['create'],
},
},
},
{
displayName: 'Column Type',
name: 'columnType',
type: 'options',
default: '',
options: [
{
name: 'Checkbox',
value: 'checkbox',
},
{
name: 'Country',
value: 'country',
},
{
name: 'Date',
value: 'date',
},
{
name: 'Dropdown',
value: 'dropdown',
},
{
name: 'Email',
value: 'email',
},
{
name: 'Hour',
value: 'hour',
},
{
name: 'Link',
value: 'Link',
},
{
name: 'Long Text',
value: 'longText',
},
{
name: 'Numbers',
value: 'numbers',
},
{
name: 'People',
value: 'people',
},
{
name: 'Person',
value: 'person',
},
{
name: 'Phone',
value: 'phone',
},
{
name: 'Rating',
value: 'rating',
},
{
name: 'Status',
value: 'status',
},
{
name: 'Tags',
value: 'tags',
},
{
name: 'Team',
value: 'team',
},
{
name: 'Text',
value: 'text',
},
{
name: 'Timeline',
value: 'timeline',
},
{
name: 'Timezone',
value: 'timezone',
},
{
name: 'Week',
value: 'week',
},
{
name: 'World Clock',
value: 'worldClock',
},
],
required: true,
displayOptions: {
show: {
resource: ['boardColumn'],
operation: ['create'],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
resource: ['boardColumn'],
operation: ['create'],
},
},
default: {},
options: [
{
displayName: 'Defauls',
name: 'defaults',
type: 'json',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
description: "The new column's defaults",
},
],
},
/* -------------------------------------------------------------------------- */
/* boardColumn:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['boardColumn'],
operation: ['getAll'],
},
},
},
];
@@ -0,0 +1,191 @@
import type { INodeProperties } from 'n8n-workflow';
export const boardOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['board'],
},
},
options: [
{
name: 'Archive',
value: 'archive',
description: 'Archive a board',
action: 'Archive a board',
},
{
name: 'Create',
value: 'create',
description: 'Create a new board',
action: 'Create a board',
},
{
name: 'Get',
value: 'get',
description: 'Get a board',
action: 'Get a board',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many boards',
action: 'Get many boards',
},
],
default: 'create',
},
];
export const boardFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* board:archive */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['board'],
operation: ['archive'],
},
},
description:
'Board unique identifiers. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
/* -------------------------------------------------------------------------- */
/* board:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['create'],
resource: ['board'],
},
},
default: '',
description: "The board's name",
},
{
displayName: 'Kind',
name: 'kind',
type: 'options',
options: [
{
name: 'Share',
value: 'share',
},
{
name: 'Public',
value: 'public',
},
{
name: 'Private',
value: 'private',
},
],
required: true,
displayOptions: {
show: {
operation: ['create'],
resource: ['board'],
},
},
default: '',
description: "The board's kind (public / private / share)",
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
operation: ['create'],
resource: ['board'],
},
},
default: {},
options: [
{
displayName: 'Template ID',
name: 'templateId',
type: 'number',
typeOptions: {
minValue: 0,
},
default: 0,
description: 'Optional board template ID',
},
],
},
/* -------------------------------------------------------------------------- */
/* board:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['board'],
operation: ['get'],
},
},
description:
'Board unique identifiers. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
/* -------------------------------------------------------------------------- */
/* board:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['board'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['board'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 50,
description: 'Max number of results to return',
},
];
@@ -0,0 +1,135 @@
import type { INodeProperties } from 'n8n-workflow';
export const boardGroupOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['boardGroup'],
},
},
options: [
{
name: 'Delete',
value: 'delete',
description: 'Delete a group in a board',
action: 'Delete a board group',
},
{
name: 'Create',
value: 'create',
description: 'Create a group in a board',
action: 'Create a board group',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get list of groups in a board',
action: 'Get many board groups',
},
],
default: 'create',
},
];
export const boardGroupFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* boardGroup:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['boardGroup'],
operation: ['create'],
},
},
},
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['create'],
resource: ['boardGroup'],
},
},
default: '',
description: 'The group name',
},
/* -------------------------------------------------------------------------- */
/* boardGroup:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardGroup'],
operation: ['delete'],
},
},
},
{
displayName: 'Group Name or ID',
name: 'groupId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getGroups',
loadOptionsDependsOn: ['boardId'],
},
required: true,
displayOptions: {
show: {
resource: ['boardGroup'],
operation: ['delete'],
},
},
},
/* -------------------------------------------------------------------------- */
/* boardGroup:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['boardGroup'],
operation: ['getAll'],
},
},
},
];
@@ -0,0 +1,551 @@
import type { INodeProperties } from 'n8n-workflow';
export const boardItemOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['boardItem'],
},
},
options: [
{
name: 'Add Update',
value: 'addUpdate',
description: 'Add an update to an item',
action: 'Add an update to an item',
},
{
name: 'Change Column Value',
value: 'changeColumnValue',
description: 'Change a column value for a board item',
action: 'Change a column value for a board item',
},
{
name: 'Change Multiple Column Values',
value: 'changeMultipleColumnValues',
description: 'Change multiple column values for a board item',
action: 'Change multiple column values for a board item',
},
{
name: 'Create',
value: 'create',
description: "Create an item in a board's group",
action: "Create an item in a board's group",
},
{
name: 'Delete',
value: 'delete',
description: 'Delete an item',
action: 'Delete an item',
},
{
name: 'Get',
value: 'get',
description: 'Get an item',
action: 'Get an item',
},
{
name: 'Get By Column Value',
value: 'getByColumnValue',
description: 'Get items by column value',
action: 'Get items item by column value',
},
{
name: 'Get Many',
value: 'getAll',
description: 'Get many items',
action: 'Get many items',
},
{
name: 'Move',
value: 'move',
description: 'Move item to group',
action: 'Move an item to a group',
},
],
default: 'create',
},
];
export const boardItemFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* boardItem:addUpdate */
/* -------------------------------------------------------------------------- */
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['addUpdate'],
},
},
description: 'The unique identifier of the item to add update to',
},
{
displayName: 'Update Text',
name: 'value',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['addUpdate'],
},
},
description: 'The update text to add',
},
/* -------------------------------------------------------------------------- */
/* boardItem:changeColumnValue */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeColumnValue'],
},
},
description:
'The unique identifier of the board. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeColumnValue'],
},
},
description: 'The unique identifier of the item to change column of',
},
{
displayName: 'Column Name or ID',
name: 'columnId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getColumns',
loadOptionsDependsOn: ['boardId'],
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeColumnValue'],
},
},
description:
'The column\'s unique identifier. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Value',
name: 'value',
type: 'json',
required: true,
default: '',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeColumnValue'],
},
},
description:
'The column value in JSON format. Documentation can be found <a href="https://monday.com/developers/v2#mutations-section-columns-change-column-value">here</a>.',
},
/* -------------------------------------------------------------------------- */
/* boardItem:changeMultipleColumnValues */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeMultipleColumnValues'],
},
},
description:
'The unique identifier of the board. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeMultipleColumnValues'],
},
},
description: "Item's ID",
},
{
displayName: 'Column Values',
name: 'columnValues',
type: 'json',
required: true,
default: '',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['changeMultipleColumnValues'],
},
},
description:
'The column fields and values in JSON format. Documentation can be found <a href="https://monday.com/developers/v2#mutations-section-columns-change-multiple-column-values">here</a>.',
typeOptions: {
alwaysOpenEditWindow: true,
},
},
/* -------------------------------------------------------------------------- */
/* boardItem:create */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['create'],
},
},
},
{
displayName: 'Group Name or ID',
name: 'groupId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getGroups',
loadOptionsDependsOn: ['boardId'],
},
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['create'],
},
},
},
{
displayName: 'Name',
name: 'name',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['create'],
resource: ['boardItem'],
},
},
default: '',
description: "The new item's name",
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
operation: ['create'],
resource: ['boardItem'],
},
},
default: {},
options: [
{
displayName: 'Column Values',
name: 'columnValues',
type: 'json',
typeOptions: {
alwaysOpenEditWindow: true,
},
default: '',
description: 'The column values of the new item',
},
],
},
/* -------------------------------------------------------------------------- */
/* boardItem:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['delete'],
},
},
description: "Item's ID",
},
/* -------------------------------------------------------------------------- */
/* boardItem:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['get'],
},
},
description: "Item's ID (Multiple can be added separated by comma)",
},
/* -------------------------------------------------------------------------- */
/* boardItem:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getAll'],
},
},
},
{
displayName: 'Group Name or ID',
name: 'groupId',
default: '',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getGroups',
loadOptionsDependsOn: ['boardId'],
},
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getAll'],
},
},
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getAll'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getAll'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 50,
description: 'Max number of results to return',
},
/* -------------------------------------------------------------------------- */
/* boardItem:getByColumnValue */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getByColumnValue'],
},
},
description:
'The unique identifier of the board. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Column Name or ID',
name: 'columnId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getColumns',
loadOptionsDependsOn: ['boardId'],
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getByColumnValue'],
},
},
description:
'The column\'s unique identifier. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>.',
},
{
displayName: 'Column Value',
name: 'columnValue',
type: 'string',
required: true,
default: '',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getByColumnValue'],
},
},
description: 'The column value to search items by',
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getByColumnValue'],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['getByColumnValue'],
returnAll: [false],
},
},
typeOptions: {
minValue: 1,
maxValue: 100,
},
default: 50,
description: 'Max number of results to return',
},
/* -------------------------------------------------------------------------- */
/* boardItem:move */
/* -------------------------------------------------------------------------- */
{
displayName: 'Board Name or ID',
name: 'boardId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
typeOptions: {
loadOptionsMethod: 'getBoards',
},
default: '',
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['move'],
},
},
},
{
displayName: 'Item ID',
name: 'itemId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: ['move'],
resource: ['boardItem'],
},
},
default: '',
description: "The item's ID",
},
{
displayName: 'Group Name or ID',
name: 'groupId',
type: 'options',
description:
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
default: '',
typeOptions: {
loadOptionsMethod: 'getGroups',
loadOptionsDependsOn: ['boardId'],
},
required: true,
displayOptions: {
show: {
resource: ['boardItem'],
operation: ['move'],
},
},
},
];
@@ -0,0 +1,100 @@
import get from 'lodash/get';
import type {
IExecuteFunctions,
ILoadOptionsFunctions,
IDataObject,
IHookFunctions,
IWebhookFunctions,
JsonObject,
IRequestOptions,
} from 'n8n-workflow';
import { NodeApiError } from 'n8n-workflow';
export async function mondayComApiRequest(
this: IExecuteFunctions | IWebhookFunctions | IHookFunctions | ILoadOptionsFunctions,
body: any = {},
option: IDataObject = {},
): Promise<any> {
const authenticationMethod = this.getNodeParameter('authentication', 0) as string;
let options: IRequestOptions = {
headers: {
'API-Version': '2023-10',
'Content-Type': 'application/json',
},
method: 'POST',
body,
uri: 'https://api.monday.com/v2/',
json: true,
};
options = Object.assign({}, options, option);
try {
let credentialType = 'mondayComApi';
if (authenticationMethod === 'oAuth2') {
credentialType = 'mondayComOAuth2Api';
}
return await this.helpers.requestWithAuthentication.call(this, credentialType, options);
} catch (error) {
throw new NodeApiError(this.getNode(), error as JsonObject);
}
}
export async function mondayComApiRequestAllItems(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
propertyName: string,
body: any = {},
): Promise<any> {
const returnData: IDataObject[] = [];
let responseData;
body.variables.limit = 50;
body.variables.page = 1;
do {
responseData = await mondayComApiRequest.call(this, body);
returnData.push.apply(returnData, get(responseData, propertyName) as IDataObject[]);
body.variables.page++;
} while (get(responseData, propertyName).length > 0);
return returnData;
}
export async function mondayComApiPaginatedRequest(
this: IHookFunctions | IExecuteFunctions | ILoadOptionsFunctions,
itemsPath: string,
fieldsToReturn: string,
body: IDataObject = {},
) {
const returnData: IDataObject[] = [];
const initialResponse = await mondayComApiRequest.call(this, body);
const data = get(initialResponse, itemsPath) as IDataObject;
if (data) {
returnData.push.apply(returnData, data.items as IDataObject[]);
let cursor: null | string = data.cursor as string;
while (cursor) {
const responseData = (
(await mondayComApiRequest.call(this, {
query: `query ( $cursor: String!) { next_items_page (cursor: $cursor, limit: 100) { cursor items ${fieldsToReturn} } }`,
variables: {
cursor,
},
})) as IDataObject
).data as { next_items_page: { cursor: string; items: IDataObject[] } };
if (responseData && responseData.next_items_page) {
returnData.push.apply(returnData, responseData.next_items_page.items);
cursor = responseData.next_items_page.cursor;
} else {
cursor = null;
}
}
}
return returnData;
}
@@ -0,0 +1,18 @@
{
"node": "n8n-nodes-base.mondayCom",
"nodeVersion": "1.0",
"codexVersion": "1.0",
"categories": ["Productivity"],
"resources": {
"credentialDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/credentials/mondaycom/"
}
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.mondaycom/"
}
]
}
}
@@ -0,0 +1,779 @@
import { snakeCase } from 'change-case';
import { NodeConnectionTypes, NodeOperationError } from 'n8n-workflow';
import type {
IExecuteFunctions,
IDataObject,
ILoadOptionsFunctions,
INodeExecutionData,
INodePropertyOptions,
INodeType,
INodeTypeDescription,
} from 'n8n-workflow';
import { boardColumnFields, boardColumnOperations } from './BoardColumnDescription';
import { boardFields, boardOperations } from './BoardDescription';
import { boardGroupFields, boardGroupOperations } from './BoardGroupDescription';
import { boardItemFields, boardItemOperations } from './BoardItemDescription';
import {
mondayComApiPaginatedRequest,
mondayComApiRequest,
mondayComApiRequestAllItems,
} from './GenericFunctions';
interface IGraphqlBody {
query: string;
variables: IDataObject;
}
export class MondayCom implements INodeType {
description: INodeTypeDescription = {
displayName: 'Monday.com',
name: 'mondayCom',
icon: 'file:mondayCom.svg',
group: ['output'],
version: 1,
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
description: 'Consume Monday.com API',
defaults: {
name: 'Monday.com',
},
usableAsTool: true,
inputs: [NodeConnectionTypes.Main],
outputs: [NodeConnectionTypes.Main],
credentials: [
{
name: 'mondayComApi',
required: true,
displayOptions: {
show: {
authentication: ['accessToken'],
},
},
},
{
name: 'mondayComOAuth2Api',
required: true,
displayOptions: {
show: {
authentication: ['oAuth2'],
},
},
},
],
properties: [
{
displayName: 'Authentication',
name: 'authentication',
type: 'options',
options: [
{
name: 'Access Token',
value: 'accessToken',
},
{
name: 'OAuth2',
value: 'oAuth2',
},
],
default: 'accessToken',
},
{
displayName: 'Resource',
name: 'resource',
type: 'options',
noDataExpression: true,
options: [
{
name: 'Board',
value: 'board',
},
{
name: 'Board Column',
value: 'boardColumn',
},
{
name: 'Board Group',
value: 'boardGroup',
},
{
name: 'Board Item',
value: 'boardItem',
},
],
default: 'board',
},
//BOARD
...boardOperations,
...boardFields,
// BOARD COLUMN
...boardColumnOperations,
...boardColumnFields,
// BOARD GROUP
...boardGroupOperations,
...boardGroupFields,
// BOARD ITEM
...boardItemOperations,
...boardItemFields,
],
};
methods = {
loadOptions: {
// Get all the available boards to display them to user so that they can
// select them easily
async getBoards(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
const body = {
query: `query ($page: Int, $limit: Int) {
boards (page: $page, limit: $limit){
id
description
name
}
}`,
variables: {
page: 1,
},
};
const boards = await mondayComApiRequestAllItems.call(this, 'data.boards', body);
if (boards === undefined) {
return returnData;
}
for (const board of boards) {
const boardName = board.name;
const boardId = board.id;
const boardDescription = board.description;
returnData.push({
name: boardName,
value: boardId,
description: boardDescription,
});
}
return returnData;
},
// Get all the available columns to display them to user so that they can
// select them easily
async getColumns(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
const boardId = this.getCurrentNodeParameter('boardId') as string;
const body: IGraphqlBody = {
query: `query ($boardId: [ID!]) {
boards (ids: $boardId){
columns {
id
title
}
}
}`,
variables: {
boardId,
},
};
const { data } = await mondayComApiRequest.call(this, body);
if (data === undefined) {
return returnData;
}
const columns = data.boards[0].columns;
for (const column of columns) {
const columnName = column.title;
const columnId = column.id;
returnData.push({
name: columnName,
value: columnId,
});
}
return returnData;
},
// Get all the available groups to display them to user so that they can
// select them easily
async getGroups(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]> {
const returnData: INodePropertyOptions[] = [];
const boardId = this.getCurrentNodeParameter('boardId') as string;
const body = {
query: `query ($boardId: ID!) {
boards ( ids: [$boardId]){
groups {
id
title
}
}
}`,
variables: {
boardId,
},
};
const { data } = await mondayComApiRequest.call(this, body);
if (data === undefined) {
return returnData;
}
const groups = data.boards[0].groups;
for (const group of groups) {
const groupName = group.title;
const groupId = group.id;
returnData.push({
name: groupName,
value: groupId,
});
}
return returnData;
},
},
};
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
const items = this.getInputData();
const returnData: INodeExecutionData[] = [];
const length = items.length;
let responseData;
const resource = this.getNodeParameter('resource', 0);
const operation = this.getNodeParameter('operation', 0);
for (let i = 0; i < length; i++) {
try {
if (resource === 'board') {
if (operation === 'archive') {
const boardId = this.getNodeParameter('boardId', i);
const body: IGraphqlBody = {
query: `mutation ($id: ID!) {
archive_board (board_id: $id) {
id
}
}`,
variables: {
id: boardId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.archive_board;
}
if (operation === 'create') {
const name = this.getNodeParameter('name', i) as string;
const kind = this.getNodeParameter('kind', i) as string;
const additionalFields = this.getNodeParameter('additionalFields', i);
const body: IGraphqlBody = {
query: `mutation ($name: String!, $kind: BoardKind!, $templateId: ID) {
create_board (board_name: $name, board_kind: $kind, template_id: $templateId) {
id
}
}`,
variables: {
name,
kind,
},
};
if (additionalFields.templateId) {
body.variables.templateId = additionalFields.templateId as number;
}
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.create_board;
}
if (operation === 'get') {
const boardId = this.getNodeParameter('boardId', i);
const body: IGraphqlBody = {
query: `query ($id: [ID!]) {
boards (ids: $id){
id
name
description
state
board_folder_id
board_kind
owners {
id
}
}
}`,
variables: {
id: boardId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.boards;
}
if (operation === 'getAll') {
const returnAll = this.getNodeParameter('returnAll', i);
const body: IGraphqlBody = {
query: `query ($page: Int, $limit: Int) {
boards (page: $page, limit: $limit){
id
name
description
state
board_folder_id
board_kind
owners {
id
}
}
}`,
variables: {
page: 1,
},
};
if (returnAll) {
responseData = await mondayComApiRequestAllItems.call(this, 'data.boards', body);
} else {
body.variables.limit = this.getNodeParameter('limit', i);
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.boards;
}
}
}
if (resource === 'boardColumn') {
if (operation === 'create') {
const boardId = this.getNodeParameter('boardId', i);
const title = this.getNodeParameter('title', i) as string;
const columnType = this.getNodeParameter('columnType', i) as string;
const additionalFields = this.getNodeParameter('additionalFields', i);
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $title: String!, $columnType: ColumnType!, $defaults: JSON ) {
create_column (board_id: $boardId, title: $title, column_type: $columnType, defaults: $defaults) {
id
}
}`,
variables: {
boardId,
title,
columnType: snakeCase(columnType),
},
};
if (additionalFields.defaults) {
try {
JSON.parse(additionalFields.defaults as string);
} catch (error) {
throw new NodeOperationError(this.getNode(), 'Defauls must be a valid JSON', {
itemIndex: i,
});
}
body.variables.defaults = JSON.stringify(
JSON.parse(additionalFields.defaults as string),
);
}
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.create_column;
}
if (operation === 'getAll') {
const boardId = this.getNodeParameter('boardId', i);
const body: IGraphqlBody = {
query: `query ($boardId: [ID!]) {
boards (ids: $boardId){
columns {
id
title
type
settings_str
archived
}
}
}`,
variables: {
page: 1,
boardId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.boards[0].columns;
}
}
if (resource === 'boardGroup') {
if (operation === 'create') {
const boardId = this.getNodeParameter('boardId', i);
const name = this.getNodeParameter('name', i) as string;
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $groupName: String!) {
create_group (board_id: $boardId, group_name: $groupName) {
id
}
}`,
variables: {
boardId,
groupName: name,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.create_group;
}
if (operation === 'delete') {
const boardId = this.getNodeParameter('boardId', i);
const groupId = this.getNodeParameter('groupId', i) as string;
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $groupId: String!) {
delete_group (board_id: $boardId, group_id: $groupId) {
id
}
}`,
variables: {
boardId,
groupId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.delete_group;
}
if (operation === 'getAll') {
const boardId = this.getNodeParameter('boardId', i);
const body: IGraphqlBody = {
query: `query ($boardId: [ID!]) {
boards (ids: $boardId, ){
id
groups {
id
title
color
position
archived
}
}
}`,
variables: {
boardId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.boards[0].groups;
}
}
if (resource === 'boardItem') {
if (operation === 'addUpdate') {
const itemId = this.getNodeParameter('itemId', i);
const value = this.getNodeParameter('value', i) as string;
const body: IGraphqlBody = {
query: `mutation ($itemId: ID!, $value: String!) {
create_update (item_id: $itemId, body: $value) {
id
}
}`,
variables: {
itemId,
value,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.create_update;
}
if (operation === 'changeColumnValue') {
const boardId = this.getNodeParameter('boardId', i);
const itemId = this.getNodeParameter('itemId', i);
const columnId = this.getNodeParameter('columnId', i) as string;
const value = this.getNodeParameter('value', i) as string;
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $itemId: ID!, $columnId: String!, $value: JSON!) {
change_column_value (board_id: $boardId, item_id: $itemId, column_id: $columnId, value: $value) {
id
}
}`,
variables: {
boardId,
itemId,
columnId,
},
};
try {
JSON.parse(value);
} catch (error) {
throw new NodeOperationError(this.getNode(), 'Custom Values must be a valid JSON', {
itemIndex: i,
});
}
body.variables.value = JSON.stringify(JSON.parse(value));
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.change_column_value;
}
if (operation === 'changeMultipleColumnValues') {
const boardId = this.getNodeParameter('boardId', i);
const itemId = this.getNodeParameter('itemId', i);
const columnValues = this.getNodeParameter('columnValues', i) as string;
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $itemId: ID!, $columnValues: JSON!) {
change_multiple_column_values (board_id: $boardId, item_id: $itemId, column_values: $columnValues) {
id
}
}`,
variables: {
boardId,
itemId,
},
};
try {
JSON.parse(columnValues);
} catch (error) {
throw new NodeOperationError(this.getNode(), 'Custom Values must be a valid JSON', {
itemIndex: i,
});
}
body.variables.columnValues = JSON.stringify(JSON.parse(columnValues));
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.change_multiple_column_values;
}
if (operation === 'create') {
const boardId = this.getNodeParameter('boardId', i);
const groupId = this.getNodeParameter('groupId', i) as string;
const itemName = this.getNodeParameter('name', i) as string;
const additionalFields = this.getNodeParameter('additionalFields', i);
const body: IGraphqlBody = {
query: `mutation ($boardId: ID!, $groupId: String!, $itemName: String!, $columnValues: JSON) {
create_item (board_id: $boardId, group_id: $groupId, item_name: $itemName, column_values: $columnValues) {
id
}
}`,
variables: {
boardId,
groupId,
itemName,
},
};
if (additionalFields.columnValues) {
try {
JSON.parse(additionalFields.columnValues as string);
} catch (error) {
throw new NodeOperationError(this.getNode(), 'Custom Values must be a valid JSON', {
itemIndex: i,
});
}
body.variables.columnValues = JSON.stringify(
JSON.parse(additionalFields.columnValues as string),
);
}
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.create_item;
}
if (operation === 'delete') {
const itemId = this.getNodeParameter('itemId', i);
const body: IGraphqlBody = {
query: `mutation ($itemId: ID!) {
delete_item (item_id: $itemId) {
id
}
}`,
variables: {
itemId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.delete_item;
}
if (operation === 'get') {
const itemIds = (this.getNodeParameter('itemId', i) as string).split(',');
const body: IGraphqlBody = {
query: `query ($itemId: [ID!]){
items (ids: $itemId) {
id
name
created_at
state
column_values {
id
text
type
value
column {
title
archived
description
settings_str
}
}
}
}`,
variables: {
itemId: itemIds,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.items;
}
if (operation === 'getAll') {
const boardId = this.getNodeParameter('boardId', i);
const groupId = this.getNodeParameter('groupId', i) as string;
const returnAll = this.getNodeParameter('returnAll', i);
const fieldsToReturn = `
{
id
name
created_at
state
column_values {
id
text
type
value
column {
title
archived
description
settings_str
}
}
}
`;
const body = {
query: `query ($boardId: [ID!], $groupId: [String], $limit: Int) {
boards(ids: $boardId) {
groups(ids: $groupId) {
id
items_page(limit: $limit) {
cursor
items ${fieldsToReturn}
}
}
}
}`,
variables: {
boardId,
groupId,
limit: 100,
},
};
if (returnAll) {
responseData = await mondayComApiPaginatedRequest.call(
this,
'data.boards[0].groups[0].items_page',
fieldsToReturn,
body as IDataObject,
);
} else {
body.variables.limit = this.getNodeParameter('limit', i);
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.boards[0].groups[0].items_page.items;
}
}
if (operation === 'getByColumnValue') {
const boardId = this.getNodeParameter('boardId', i);
const columnId = this.getNodeParameter('columnId', i) as string;
const columnValue = this.getNodeParameter('columnValue', i) as string;
const returnAll = this.getNodeParameter('returnAll', i);
const fieldsToReturn = `{
id
name
created_at
state
board {
id
}
column_values {
id
text
type
value
column {
title
archived
description
settings_str
}
}
}`;
const body = {
query: `query ($boardId: ID!, $columnId: String!, $columnValue: String!, $limit: Int) {
items_page_by_column_values(
limit: $limit
board_id: $boardId
columns: [{column_id: $columnId, column_values: [$columnValue]}]
) {
cursor
items ${fieldsToReturn}
}
}`,
variables: {
boardId,
columnId,
columnValue,
limit: 100,
},
};
if (returnAll) {
responseData = await mondayComApiPaginatedRequest.call(
this,
'data.items_page_by_column_values',
fieldsToReturn,
body as IDataObject,
);
} else {
body.variables.limit = this.getNodeParameter('limit', i);
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.items_page_by_column_values.items;
}
}
if (operation === 'move') {
const groupId = this.getNodeParameter('groupId', i) as string;
const itemId = this.getNodeParameter('itemId', i);
const body: IGraphqlBody = {
query: `mutation ($groupId: String!, $itemId: ID!) {
move_item_to_group (group_id: $groupId, item_id: $itemId) {
id
}
}`,
variables: {
groupId,
itemId,
},
};
responseData = await mondayComApiRequest.call(this, body);
responseData = responseData.data.move_item_to_group;
}
}
const executionData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray(responseData as IDataObject),
{ itemData: { item: i } },
);
returnData.push(...executionData);
} catch (error) {
if (this.continueOnFail()) {
const executionErrorData = this.helpers.constructExecutionMetaData(
this.helpers.returnJsonArray({ error: error.message }),
{ itemData: { item: i } },
);
returnData.push(...executionErrorData);
continue;
}
throw error;
}
}
return [returnData];
}
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,29 @@
{
"type": "object",
"properties": {
"board_kind": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owners": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}
},
"state": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,29 @@
{
"type": "object",
"properties": {
"board_kind": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"owners": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}
},
"state": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"id": {
"type": "string"
},
"settings_str": {
"type": "string"
},
"title": {
"type": "string"
},
"type": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,21 @@
{
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"color": {
"type": "string"
},
"id": {
"type": "string"
},
"position": {
"type": "string"
},
"title": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,46 @@
{
"type": "object",
"properties": {
"column_values": {
"type": "array",
"items": {
"type": "object",
"properties": {
"column": {
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"settings_str": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"created_at": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"state": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,46 @@
{
"type": "object",
"properties": {
"column_values": {
"type": "array",
"items": {
"type": "object",
"properties": {
"column": {
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"settings_str": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"created_at": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"state": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,54 @@
{
"type": "object",
"properties": {
"board": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
},
"column_values": {
"type": "array",
"items": {
"type": "object",
"properties": {
"column": {
"type": "object",
"properties": {
"archived": {
"type": "boolean"
},
"settings_str": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"id": {
"type": "string"
},
"type": {
"type": "string"
}
}
}
},
"created_at": {
"type": "string"
},
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"state": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1,9 @@
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
},
"version": 1
}
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><g fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round"><path fill="#FF3D57" d="M8.184 47.393A7.2 7.2 0 0 1 1.9 43.674a7.22 7.22 0 0 1 .196-7.307l12.945-20.73a7.18 7.18 0 0 1 6.356-3.376 7.2 7.2 0 0 1 6.097 3.824 7.21 7.21 0 0 1-.258 7.2l-12.95 20.727a7.19 7.19 0 0 1-6.103 3.379z"/><path fill="#FFCB00" d="M30.494 47.393a7.2 7.2 0 0 1-6.295-3.713 7.21 7.21 0 0 1 .194-7.313l12.954-20.73a7.17 7.17 0 0 1 6.411-3.634A7.19 7.19 0 0 1 50 15.923a7.21 7.21 0 0 1-.476 7.36l-12.93 20.73a7.19 7.19 0 0 1-6.102 3.378l.003.002z"/><path fill="#00D647" d="M45.591 40.357c0-3.895 3.214-7.034 7.205-7.034S60 36.46 60 40.357s-3.214 7.034-7.204 7.034c-3.991 0-7.205-3.137-7.205-7.034"/></g></svg>

After

Width:  |  Height:  |  Size: 770 B