How To
How to find all tasks that output to a specific field
when troubleshooting an error, it might be necessary to find a list of all tasks that output to a specific field what you’ll need an application in swimlane with a field the name of the field in swimlane google chrome access to mongodb (or this link for how to access mongo via cli) follow the steps below load the application builder page open chrome developer tools select network and find the application id from the url of your current page select response, copy the text , and paste it into a json document viewer search the document for the field name copy the ‘id’ field connect to mongodb paste the field id into the following query and run it db getcollection('tasks') find({'outputs mappings value' 'xxxxxx'}) pretty() the following is an example of what’s returned the important fields are these can be used to track down the tasks in swimlane