Results 2 comments of Jay Baker

Old, but maybe this still helps you. A nasty fix is to monkey patch `container.getAll`: **container.ts** ```ts import { Container } from "inversify" export const container = new Container() //...

This might not solve your problem 100%, but here is a method I have added to my `container.ts` file that lets me `unbindTagged`: **container.ts** ```ts import { Container } from...