I think, the quote wants to say that sometimes you want a very specific functionality of an object, however if you want to use it, you always have to use the whole object.
That way of thinking is not 100% correct, since it just describes a monolithic way of working with Object Oriented Programming (OO). It is very possible to design light-weight objects (just "bananas") which interact with each other or are composable in order to create some kind of functionality.
In that sense, the quote is also applicable to Functional Programming (FP). You can create one big god-state that you pass around, which would contain the banana, the gorilla and the entire jungle.
A concept is only as good as the person using it.