Hello guys! I’m wonder if it’s possible to remove a plugin for a specific process computation?
Like
(def new-pathom-env
(-> pathom-env
(update :com.wsscode.pathom3.plugin/plugin-order
(fn [plugins-order]
(remove
#(= (:com.wsscode.pathom3.plugin/id %)
'beop.pathom.plugins/rename-output-plugin)
plugins-order)))))ooh I see the remove-plugin function in the plugin namespace!