Bolek Kurowski
Bolek Kurowski
I am trying to run the following query: ```groovy def soql = new SoqlQueryBuilder() .addSelectPhrase("count(*)") .setWhereClause(":updated_at>'${dateString}'") .build(); ``` soda-java currently generates the following url: ``` https://data.cityofnewyork.us/resource/fhrw-4uyv.json?$select=count(*)&$where=:updated_at%3E%272018-05-08T21:19:25Z%27&$$version=2.0 ``` which returns ```...
Example: Without change: `Recase.to_snake("SnakeACase") == "snake_acase"` With change: `Recase.to_snake("SnakeACase") == "snake_a_case"` Fixes #74 and #110