{
"id": "build_dashboard",
"type": "transform",
"config": {
"output": {
"user": "{{fetch_user.output.body | pick:id:name:email}}",
"stats": {
"posts": "{{fetch_posts.output.body | count}}",
"comments": "{{fetch_comments.output.body | count}}",
"likes": "{{fetch_likes.output.body | count}}"
},
"recent_activity": {
"latest_post": "{{fetch_posts.output.body | first}}",
"latest_comment": "{{fetch_comments.output.body | first}}"
},
"notifications": "{{fetch_notifications.output.body | filter:read=false | slice:5}}"
}
}
}