Currently it looks like the app just has one way to find things, which is with the byExample method. We could add a findByQuery method to allow passing a string query.
City.findByQuery(`
for city in outbound 'city/VANCOUVER' trips
return distinct city
`)
Any thoughts on this?