its just showing on switch node but not in summarize node? cause everytime i test the step its just showing the first ouput. i want to get all output and convert all to json file
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
@Everett_Sobinsky , I see two issues with the setup of Summarize node:
- Field name is expect but you use an array
- Splitting by the same field to which aggregation is applied
What is your input data and what output you expect to get?
Here’s an example of the usage for better understanding how Summarize works.
Outcome
What my Summarization does is, it counts (Aggregation: Count) the number of fields count
segregated by the property domain
. That is, in the JSON input the items containing domain “abc” and the property cost is only 1
as the other 2 items in this domain have no property cost
.
Similarly, the domain “def” has 2 items that contain the property cost
.
Does it align with your expectation?
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.