I agree with the post above. Koala does not provide an object model, so it's much harder to work with. fb_graph is full stack so it lets you work with things naturally.
I originally started with Koala and even dealing with collections of objects was a bit painful since Facebook returns them in paginated lists (so you need to loop to go through all pages). You still need to loop through pages with fb_graph, but it's one method call, so it's much simpler.
The only reason I would say you should go with Koala is if you need something lightweight for some reason, if want to build a lot of custom stuff on top of it (it's much less code, so easier to modify than fb_graph), or if you're worried the Facebook API will change drastically in the near future (koala only gives you very low level methods, so they are less likely to break if FB changes their API). However, as I mentioned above, I still think fb_graph is an overall better bargain since it saves you so much time.