비교기
중급
이것은Building Blocks분야의자동화 워크플로우로, 7개의 노드를 포함합니다.주로 Set, Code, Switch, ExecuteWorkflowTrigger 등의 노드를 사용하며. 사용자 정의 키 목록을 사용하여 공통 항목과 차이 항목을 식별합니다.
사전 요구사항
- •특별한 사전 요구사항 없이 가져와 바로 사용 가능합니다
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "6oFu27D3MfMM86Oz",
"meta": {
"instanceId": "b502e5a8bc6c091b48560caa78bb54b47e56d5b7f2538880db0015950174c8b7"
},
"name": "comparer",
"tags": [],
"nodes": [
{
"id": "e13aefae-e377-4ebd-acd9-fb70aaefecfe",
"name": "다른 워크플로우에서 실행 시",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"position": [
0,
20
],
"parameters": {
"workflowInputs": {
"values": [
{
"name": "input_a",
"type": "array"
},
{
"name": "input_b",
"type": "array"
},
{
"name": "key"
}
]
}
},
"typeVersion": 1.1
},
{
"id": "85588542-5fcb-415f-b189-bbb38f889bb5",
"name": "코드",
"type": "n8n-nodes-base.code",
"position": [
440,
320
],
"parameters": {
"jsCode": "const listA =$input.first().json.input_a ; \nconst listB = $input.first().json.input_b;\nconst key = $input.first().json.key;\n\nconst aMap = new Map(listA.map(item => [item[key], item]));\nconst bMap = new Map(listB.map(item => [item[key], item]));\n\nconst common = [];\nconst onlyInA = [];\nconst onlyInB = [];\n\nfor (const [k, itemA] of aMap) {\n if (bMap.has(k)) {\n common.push(itemA); // ← keep A's version only\n } else {\n onlyInA.push(itemA);\n }\n}\n\nfor (const [k, itemB] of bMap) {\n if (!aMap.has(k)) {\n onlyInB.push(itemB);\n }\n}\n\nreturn [\n {\n json: {\n common: common,\n onlyInA: onlyInA,\n onlyInB: onlyInB\n }\n }\n];\n"
},
"typeVersion": 2
},
{
"id": "f1bee89d-54b2-4cf7-87f6-45e2f940b763",
"name": "스티키 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-140,
-160
],
"parameters": {
"content": "## Pass in two list of item that you like to compare, as well as the key"
},
"typeVersion": 1
},
{
"id": "f04f1c66-e219-46a1-99ff-9e3df7f8d2fa",
"name": "스위치",
"type": "n8n-nodes-base.switch",
"position": [
220,
-1
],
"parameters": {
"rules": {
"values": [
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "673a0546-03d9-44d2-95ea-aecafb41a7d9",
"operator": {
"type": "string",
"operation": "empty",
"singleValue": true
},
"leftValue": "={{ $json.key }}",
"rightValue": ""
}
]
}
},
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "e95886e4-4664-40de-b177-1a4d17aa88d8",
"operator": {
"type": "array",
"operation": "empty",
"singleValue": true
},
"leftValue": "={{ $json.input_a }}",
"rightValue": ""
}
]
}
},
{
"conditions": {
"options": {
"version": 2,
"leftValue": "",
"caseSensitive": true,
"typeValidation": "strict"
},
"combinator": "and",
"conditions": [
{
"id": "694a102f-2421-48df-9a17-a9270da0b9aa",
"operator": {
"type": "array",
"operation": "empty",
"singleValue": true
},
"leftValue": "={{ $json.input_b }}",
"rightValue": ""
}
]
}
}
]
},
"options": {
"fallbackOutput": "extra"
}
},
"typeVersion": 3.2,
"alwaysOutputData": true
},
{
"id": "4554a775-e6d4-4ae0-85ff-9564866d1464",
"name": "validation_message 1",
"type": "n8n-nodes-base.set",
"position": [
440,
-280
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "39e1492c-820e-4157-963e-cfa5c7d5d0a6",
"name": "validation_message",
"type": "string",
"value": "You must specify a key"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "0fa56f6d-3a28-4382-9916-ddaeb31e0310",
"name": "validation_message 2",
"type": "n8n-nodes-base.set",
"position": [
440,
-80
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "ca870eac-56f8-4c5f-9938-1bc53bce7f26",
"name": "validation_message",
"type": "string",
"value": "You must specify input_a"
}
]
}
},
"typeVersion": 3.4
},
{
"id": "2c4b3b98-7a20-418c-af4e-4c2967532e31",
"name": "validation_message 3",
"type": "n8n-nodes-base.set",
"position": [
440,
120
],
"parameters": {
"options": {},
"assignments": {
"assignments": [
{
"id": "ca870eac-56f8-4c5f-9938-1bc53bce7f26",
"name": "validation_message",
"type": "string",
"value": "You must specify input_b"
}
]
}
},
"typeVersion": 3.4
}
],
"active": false,
"pinData": {
"When Executed by Another Workflow": [
{
"json": {
"key": "transaction_id",
"input_a": [
{
"amount": 11840,
"status": "failed",
"customer": "user1001@example.com",
"timestamp": "2025-05-02T00:41:00Z",
"transaction_id": "TX1001"
},
{
"amount": 6174,
"status": "success",
"customer": "user1002@example.com",
"timestamp": "2025-05-02T00:42:00Z",
"transaction_id": "TX1002"
},
{
"amount": 16462,
"status": "failed",
"customer": "user1003@example.com",
"timestamp": "2025-05-02T00:43:00Z",
"transaction_id": "TX1003"
},
{
"amount": 8306,
"status": "success",
"customer": "user1004@example.com",
"timestamp": "2025-05-02T00:44:00Z",
"transaction_id": "TX1004"
},
{
"amount": 17061,
"status": "failed",
"customer": "user1005@example.com",
"timestamp": "2025-05-02T00:45:00Z",
"transaction_id": "TX1005"
},
{
"amount": 13948,
"status": "failed",
"customer": "user1006@example.com",
"timestamp": "2025-05-02T00:46:00Z",
"transaction_id": "TX1006"
},
{
"amount": 16560,
"status": "pending",
"customer": "user1007@example.com",
"timestamp": "2025-05-02T00:47:00Z",
"transaction_id": "TX1007"
},
{
"amount": 10979,
"status": "success",
"customer": "user1008@example.com",
"timestamp": "2025-05-02T00:48:00Z",
"transaction_id": "TX1008"
},
{
"amount": 17136,
"status": "pending",
"customer": "user1009@example.com",
"timestamp": "2025-05-02T00:49:00Z",
"transaction_id": "TX1009"
},
{
"amount": 12834,
"status": "success",
"customer": "user1010@example.com",
"timestamp": "2025-05-02T00:50:00Z",
"transaction_id": "TX1010"
},
{
"amount": 7903,
"status": "failed",
"customer": "user1011@example.com",
"timestamp": "2025-05-02T00:51:00Z",
"transaction_id": "TX1011"
},
{
"amount": 19348,
"status": "pending",
"customer": "user1012@example.com",
"timestamp": "2025-05-02T00:52:00Z",
"transaction_id": "TX1012"
},
{
"amount": 18943,
"status": "failed",
"customer": "user1013@example.com",
"timestamp": "2025-05-02T00:53:00Z",
"transaction_id": "TX1013"
},
{
"amount": 16094,
"status": "failed",
"customer": "user1014@example.com",
"timestamp": "2025-05-02T00:54:00Z",
"transaction_id": "TX1014"
},
{
"amount": 5181,
"status": "failed",
"customer": "user1015@example.com",
"timestamp": "2025-05-02T00:55:00Z",
"transaction_id": "TX1015"
},
{
"amount": 16048,
"status": "failed",
"customer": "user1016@example.com",
"timestamp": "2025-05-02T00:56:00Z",
"transaction_id": "TX1016"
},
{
"amount": 6426,
"status": "success",
"customer": "user1017@example.com",
"timestamp": "2025-05-02T00:57:00Z",
"transaction_id": "TX1017"
},
{
"amount": 15538,
"status": "pending",
"customer": "user1018@example.com",
"timestamp": "2025-05-02T00:58:00Z",
"transaction_id": "TX1018"
},
{
"amount": 17804,
"status": "failed",
"customer": "user1019@example.com",
"timestamp": "2025-05-02T00:59:00Z",
"transaction_id": "TX1019"
},
{
"amount": 14445,
"status": "pending",
"customer": "user1020@example.com",
"timestamp": "2025-05-02T01:00:00Z",
"transaction_id": "TX1020"
},
{
"amount": 15229,
"status": "pending",
"customer": "user1021@example.com",
"timestamp": "2025-05-02T01:01:00Z",
"transaction_id": "TX1021"
},
{
"amount": 6153,
"status": "failed",
"customer": "user1022@example.com",
"timestamp": "2025-05-02T01:02:00Z",
"transaction_id": "TX1022"
},
{
"amount": 19890,
"status": "success",
"customer": "user1023@example.com",
"timestamp": "2025-05-02T01:03:00Z",
"transaction_id": "TX1023"
},
{
"amount": 16230,
"status": "failed",
"customer": "user1024@example.com",
"timestamp": "2025-05-02T01:04:00Z",
"transaction_id": "TX1024"
},
{
"amount": 18620,
"status": "success",
"customer": "user1025@example.com",
"timestamp": "2025-05-02T01:05:00Z",
"transaction_id": "TX1025"
},
{
"amount": 17504,
"status": "success",
"customer": "user1026@example.com",
"timestamp": "2025-05-02T01:06:00Z",
"transaction_id": "TX1026"
},
{
"amount": 14816,
"status": "pending",
"customer": "user1027@example.com",
"timestamp": "2025-05-02T01:07:00Z",
"transaction_id": "TX1027"
},
{
"amount": 18519,
"status": "success",
"customer": "user1028@example.com",
"timestamp": "2025-05-02T01:08:00Z",
"transaction_id": "TX1028"
},
{
"amount": 10161,
"status": "pending",
"customer": "user1029@example.com",
"timestamp": "2025-05-02T01:09:00Z",
"transaction_id": "TX1029"
},
{
"amount": 16523,
"status": "pending",
"customer": "user1030@example.com",
"timestamp": "2025-05-02T01:10:00Z",
"transaction_id": "TX1030"
},
{
"amount": 13537,
"status": "failed",
"customer": "user1031@example.com",
"timestamp": "2025-05-02T01:11:00Z",
"transaction_id": "TX1031"
},
{
"amount": 13942,
"status": "pending",
"customer": "user1032@example.com",
"timestamp": "2025-05-02T01:12:00Z",
"transaction_id": "TX1032"
},
{
"amount": 5970,
"status": "success",
"customer": "user1033@example.com",
"timestamp": "2025-05-02T01:13:00Z",
"transaction_id": "TX1033"
},
{
"amount": 13842,
"status": "failed",
"customer": "user1034@example.com",
"timestamp": "2025-05-02T01:14:00Z",
"transaction_id": "TX1034"
},
{
"amount": 5139,
"status": "pending",
"customer": "user1035@example.com",
"timestamp": "2025-05-02T01:15:00Z",
"transaction_id": "TX1035"
},
{
"amount": 7040,
"status": "pending",
"customer": "user1036@example.com",
"timestamp": "2025-05-02T01:16:00Z",
"transaction_id": "TX1036"
},
{
"amount": 6604,
"status": "pending",
"customer": "user1037@example.com",
"timestamp": "2025-05-02T01:17:00Z",
"transaction_id": "TX1037"
},
{
"amount": 15016,
"status": "failed",
"customer": "user1038@example.com",
"timestamp": "2025-05-02T01:18:00Z",
"transaction_id": "TX1038"
},
{
"amount": 8183,
"status": "pending",
"customer": "user1039@example.com",
"timestamp": "2025-05-02T01:19:00Z",
"transaction_id": "TX1039"
},
{
"amount": 7528,
"status": "pending",
"customer": "user1040@example.com",
"timestamp": "2025-05-02T01:20:00Z",
"transaction_id": "TX1040"
},
{
"amount": 7317,
"status": "failed",
"customer": "user1041@example.com",
"timestamp": "2025-05-02T01:21:00Z",
"transaction_id": "TX1041"
},
{
"amount": 11452,
"status": "failed",
"customer": "user1042@example.com",
"timestamp": "2025-05-02T01:22:00Z",
"transaction_id": "TX1042"
},
{
"amount": 9342,
"status": "failed",
"customer": "user1043@example.com",
"timestamp": "2025-05-02T01:23:00Z",
"transaction_id": "TX1043"
},
{
"amount": 9512,
"status": "pending",
"customer": "user1044@example.com",
"timestamp": "2025-05-02T01:24:00Z",
"transaction_id": "TX1044"
},
{
"amount": 14267,
"status": "success",
"customer": "user1045@example.com",
"timestamp": "2025-05-02T01:25:00Z",
"transaction_id": "TX1045"
},
{
"amount": 10563,
"status": "success",
"customer": "user1046@example.com",
"timestamp": "2025-05-02T01:26:00Z",
"transaction_id": "TX1046"
},
{
"amount": 9781,
"status": "pending",
"customer": "user1047@example.com",
"timestamp": "2025-05-02T01:27:00Z",
"transaction_id": "TX1047"
},
{
"amount": 9480,
"status": "pending",
"customer": "user1048@example.com",
"timestamp": "2025-05-02T01:28:00Z",
"transaction_id": "TX1048"
},
{
"amount": 16356,
"status": "success",
"customer": "user1049@example.com",
"timestamp": "2025-05-02T01:29:00Z",
"transaction_id": "TX1049"
},
{
"amount": 12390,
"status": "pending",
"customer": "user1050@example.com",
"timestamp": "2025-05-02T01:30:00Z",
"transaction_id": "TX1050"
}
],
"input_b": [
{
"amount": 19248,
"status": "success",
"customer": "user1026b@example.com",
"timestamp": "2025-05-02T01:06:00Z",
"transaction_id": "TX1026"
},
{
"amount": 18199,
"status": "success",
"customer": "user1027b@example.com",
"timestamp": "2025-05-02T01:07:00Z",
"transaction_id": "TX1027"
},
{
"amount": 6436,
"status": "success",
"customer": "user1028b@example.com",
"timestamp": "2025-05-02T01:08:00Z",
"transaction_id": "TX1028"
},
{
"amount": 14595,
"status": "failed",
"customer": "user1029b@example.com",
"timestamp": "2025-05-02T01:09:00Z",
"transaction_id": "TX1029"
},
{
"amount": 12791,
"status": "pending",
"customer": "user1030b@example.com",
"timestamp": "2025-05-02T01:10:00Z",
"transaction_id": "TX1030"
},
{
"amount": 5304,
"status": "success",
"customer": "user1031b@example.com",
"timestamp": "2025-05-02T01:11:00Z",
"transaction_id": "TX1031"
},
{
"amount": 16836,
"status": "failed",
"customer": "user1032b@example.com",
"timestamp": "2025-05-02T01:12:00Z",
"transaction_id": "TX1032"
},
{
"amount": 13749,
"status": "pending",
"customer": "user1033b@example.com",
"timestamp": "2025-05-02T01:13:00Z",
"transaction_id": "TX1033"
},
{
"amount": 8821,
"status": "success",
"customer": "user1034b@example.com",
"timestamp": "2025-05-02T01:14:00Z",
"transaction_id": "TX1034"
},
{
"amount": 17962,
"status": "pending",
"customer": "user1035b@example.com",
"timestamp": "2025-05-02T01:15:00Z",
"transaction_id": "TX1035"
},
{
"amount": 11613,
"status": "pending",
"customer": "user1036b@example.com",
"timestamp": "2025-05-02T01:16:00Z",
"transaction_id": "TX1036"
},
{
"amount": 18324,
"status": "failed",
"customer": "user1037b@example.com",
"timestamp": "2025-05-02T01:17:00Z",
"transaction_id": "TX1037"
},
{
"amount": 5642,
"status": "failed",
"customer": "user1038b@example.com",
"timestamp": "2025-05-02T01:18:00Z",
"transaction_id": "TX1038"
},
{
"amount": 13180,
"status": "failed",
"customer": "user1039b@example.com",
"timestamp": "2025-05-02T01:19:00Z",
"transaction_id": "TX1039"
},
{
"amount": 5071,
"status": "failed",
"customer": "user1040b@example.com",
"timestamp": "2025-05-02T01:20:00Z",
"transaction_id": "TX1040"
},
{
"amount": 10293,
"status": "failed",
"customer": "user1041b@example.com",
"timestamp": "2025-05-02T01:21:00Z",
"transaction_id": "TX1041"
},
{
"amount": 18056,
"status": "pending",
"customer": "user1042b@example.com",
"timestamp": "2025-05-02T01:22:00Z",
"transaction_id": "TX1042"
},
{
"amount": 6462,
"status": "success",
"customer": "user1043b@example.com",
"timestamp": "2025-05-02T01:23:00Z",
"transaction_id": "TX1043"
},
{
"amount": 12051,
"status": "failed",
"customer": "user1044b@example.com",
"timestamp": "2025-05-02T01:24:00Z",
"transaction_id": "TX1044"
},
{
"amount": 6234,
"status": "failed",
"customer": "user1045b@example.com",
"timestamp": "2025-05-02T01:25:00Z",
"transaction_id": "TX1045"
},
{
"amount": 9612,
"status": "failed",
"customer": "user1046b@example.com",
"timestamp": "2025-05-02T01:26:00Z",
"transaction_id": "TX1046"
},
{
"amount": 18897,
"status": "success",
"customer": "user1047b@example.com",
"timestamp": "2025-05-02T01:27:00Z",
"transaction_id": "TX1047"
},
{
"amount": 9226,
"status": "success",
"customer": "user1048b@example.com",
"timestamp": "2025-05-02T01:28:00Z",
"transaction_id": "TX1048"
},
{
"amount": 7580,
"status": "failed",
"customer": "user1049b@example.com",
"timestamp": "2025-05-02T01:29:00Z",
"transaction_id": "TX1049"
},
{
"amount": 5471,
"status": "pending",
"customer": "user1050b@example.com",
"timestamp": "2025-05-02T01:30:00Z",
"transaction_id": "TX1050"
},
{
"amount": 10350,
"status": "failed",
"customer": "user1051@example.com",
"timestamp": "2025-05-02T01:31:00Z",
"transaction_id": "TX1051"
},
{
"amount": 18185,
"status": "pending",
"customer": "user1052@example.com",
"timestamp": "2025-05-02T01:32:00Z",
"transaction_id": "TX1052"
},
{
"amount": 16701,
"status": "pending",
"customer": "user1053@example.com",
"timestamp": "2025-05-02T01:33:00Z",
"transaction_id": "TX1053"
},
{
"amount": 7212,
"status": "success",
"customer": "user1054@example.com",
"timestamp": "2025-05-02T01:34:00Z",
"transaction_id": "TX1054"
},
{
"amount": 13990,
"status": "pending",
"customer": "user1055@example.com",
"timestamp": "2025-05-02T01:35:00Z",
"transaction_id": "TX1055"
},
{
"amount": 12908,
"status": "failed",
"customer": "user1056@example.com",
"timestamp": "2025-05-02T01:36:00Z",
"transaction_id": "TX1056"
},
{
"amount": 8428,
"status": "failed",
"customer": "user1057@example.com",
"timestamp": "2025-05-02T01:37:00Z",
"transaction_id": "TX1057"
},
{
"amount": 10953,
"status": "pending",
"customer": "user1058@example.com",
"timestamp": "2025-05-02T01:38:00Z",
"transaction_id": "TX1058"
},
{
"amount": 13393,
"status": "pending",
"customer": "user1059@example.com",
"timestamp": "2025-05-02T01:39:00Z",
"transaction_id": "TX1059"
},
{
"amount": 7002,
"status": "success",
"customer": "user1060@example.com",
"timestamp": "2025-05-02T01:40:00Z",
"transaction_id": "TX1060"
},
{
"amount": 12233,
"status": "pending",
"customer": "user1061@example.com",
"timestamp": "2025-05-02T01:41:00Z",
"transaction_id": "TX1061"
},
{
"amount": 9122,
"status": "pending",
"customer": "user1062@example.com",
"timestamp": "2025-05-02T01:42:00Z",
"transaction_id": "TX1062"
},
{
"amount": 12199,
"status": "pending",
"customer": "user1063@example.com",
"timestamp": "2025-05-02T01:43:00Z",
"transaction_id": "TX1063"
},
{
"amount": 12622,
"status": "success",
"customer": "user1064@example.com",
"timestamp": "2025-05-02T01:44:00Z",
"transaction_id": "TX1064"
},
{
"amount": 19944,
"status": "failed",
"customer": "user1065@example.com",
"timestamp": "2025-05-02T01:45:00Z",
"transaction_id": "TX1065"
},
{
"amount": 19436,
"status": "success",
"customer": "user1066@example.com",
"timestamp": "2025-05-02T01:46:00Z",
"transaction_id": "TX1066"
},
{
"amount": 15468,
"status": "pending",
"customer": "user1067@example.com",
"timestamp": "2025-05-02T01:47:00Z",
"transaction_id": "TX1067"
},
{
"amount": 19027,
"status": "failed",
"customer": "user1068@example.com",
"timestamp": "2025-05-02T01:48:00Z",
"transaction_id": "TX1068"
},
{
"amount": 15309,
"status": "success",
"customer": "user1069@example.com",
"timestamp": "2025-05-02T01:49:00Z",
"transaction_id": "TX1069"
},
{
"amount": 10424,
"status": "pending",
"customer": "user1070@example.com",
"timestamp": "2025-05-02T01:50:00Z",
"transaction_id": "TX1070"
},
{
"amount": 18350,
"status": "failed",
"customer": "user1071@example.com",
"timestamp": "2025-05-02T01:51:00Z",
"transaction_id": "TX1071"
},
{
"amount": 14119,
"status": "success",
"customer": "user1072@example.com",
"timestamp": "2025-05-02T01:52:00Z",
"transaction_id": "TX1072"
},
{
"amount": 16004,
"status": "pending",
"customer": "user1073@example.com",
"timestamp": "2025-05-02T01:53:00Z",
"transaction_id": "TX1073"
},
{
"amount": 17157,
"status": "pending",
"customer": "user1074@example.com",
"timestamp": "2025-05-02T01:54:00Z",
"transaction_id": "TX1074"
},
{
"amount": 12849,
"status": "pending",
"customer": "user1075@example.com",
"timestamp": "2025-05-02T01:55:00Z",
"transaction_id": "TX1075"
}
]
}
}
]
},
"settings": {
"executionOrder": "v1"
},
"versionId": "29cfe6be-abca-424c-99aa-ad781eb68e98",
"connections": {
"85588542-5fcb-415f-b189-bbb38f889bb5": {
"main": [
[]
]
},
"f04f1c66-e219-46a1-99ff-9e3df7f8d2fa": {
"main": [
[
{
"node": "4554a775-e6d4-4ae0-85ff-9564866d1464",
"type": "main",
"index": 0
}
],
[
{
"node": "0fa56f6d-3a28-4382-9916-ddaeb31e0310",
"type": "main",
"index": 0
}
],
[
{
"node": "2c4b3b98-7a20-418c-af4e-4c2967532e31",
"type": "main",
"index": 0
}
],
[
{
"node": "85588542-5fcb-415f-b189-bbb38f889bb5",
"type": "main",
"index": 0
}
]
]
},
"e13aefae-e377-4ebd-acd9-fb70aaefecfe": {
"main": [
[
{
"node": "f04f1c66-e219-46a1-99ff-9e3df7f8d2fa",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 빌딩 블록
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
빌드 커스텀 Qdrant 벡터 스토리지 MCP 서버
개별 Qdrant 벡터 스토리지 MCP 서버 구축
If
Set
Code
+
If
Set
Code
44 노드Jimleuk
빌딩 블록
🤖 고급 슬랙본트(n8n)
🤖 고급 슬랙본트(n8n)
If
Set
Code
+
If
Set
Code
34 노드Mutasem
엔지니어링
텍스트, 음성, 이미지 및 PDF를 지원하는 AI 기반 WhatsApp 챗봇(RAG)
텍스트, 음성, 이미지 및 PDF 지원 AI 기반 WhatsApp 챗봇(RAG)
Set
Code
Switch
+
Set
Code
Switch
35 노드NovaNode
엔지니어링
적응형 RAG
自适应RAG策略:쿼리分类与检索(Gemini및Qdrant)
Set
Switch
Summarize
+
Set
Switch
Summarize
39 노드dmr
엔지니어링
RAG 2.0 - 답변 아키텍처
自适应RAG(Google Gemini및Qdrant):上下文感知쿼리应答
Set
Switch
Summarize
+
Set
Switch
Summarize
40 노드Nisa
빌딩 블록
TG-봇-모듈-퀴즈-v4-데이터베이스-판매-완전판
Telegram을 통해 Postgres에서 테스트 및 응답 수집 자동화("퀴즈" 모듈)
If
Set
Code
+
If
Set
Code
36 노드Andrew
영업
워크플로우 정보
난이도
중급
노드 수7
카테고리1
노드 유형5
저자
Tenkay
@tenkayI'm a software developer with over 11 years of experience building systems across various stacks. I'm now applying that expertise to create practical and scalable workflow automations with n8n — focusing on clean logic, real-world use cases, and reusability. Always open to learning, sharing, and collaborating.
외부 링크
n8n.io에서 보기 →
이 워크플로우 공유