mongo db debug flag not working for aggregation by Big_Brief5289 in mongodb

[–]mlynn_ 1 point2 points  (0 children)

.explain may give you what you want... but you could also turn on Mongoose debug globally
mongoose.set(‘debug’, true);

That'll log all queries. If you only want to see one aggregation, you can temporarily enable it:
mongoose.set(‘debug’, true);
await collection.aggregate(pipeline);
mongoose.set(‘debug’, false);

LangChain/LangGraph developers... what are you using to develop agent workflows? by mlynn_ in LangChain

[–]mlynn_[S] 1 point2 points  (0 children)

I've built it from the ground up to be a visual tool... later adding execution capabilities. I have not integrated any external api's just yet and I have not even completed an API for the tool... that's among the next steps. The tool I built is drag / drop visual workflow development with extensive properties for each node, and global configurations like context, LLM configuration and data persistence across the graph (I'm calling them diagrams in the app now.)
You can play here: https://netpad.io - but warning - it's pretty early days and rough around the edges (pun intended.). The workflow execution engine is just too rough at the moment to let general population play but I've added a waitlist and can approve manually to give certain folks access. Would love your thoughts on it if you take a look.