There's nothing in the docs about this.
I've just read a blog post on ionics website saying that it's possible to swipe to go back (like ios7) and I've seen the latest ng-conf where they talked about it as well, but nowhere to they mention on how to implement the damn thing.
No need to do a on-swipe-left. The latest version of Ionic provides this, and is defaults to true. As for using this feature, you need to create multiple views, and then just swipe from left, it will take you back to previous view.
Ionic has built in gesture events.
Ex.
<div on-swipe-left="swipeleftAction()">
</div>
So I guess you could place on-swipe-left or on-swipe-right in your page container or div.