I've come to the conclusion that ORMs are good for simple queries like User.find_by(email: "john@snow.com"), but once you get beyond that you are better off just writing sql.
I think Qustar is closer to a query builder than ORM tbh. You can compose arbitrary queries using it.