Codigami / face4j

face4j is a java library for facebook's new graph API
http://face4j.org
23 stars 6 forks source link

Check filter queries for the field changed form long to string #7

Closed sam6230i closed 13 years ago

sam6230i commented 13 years ago

As some of the fields are changed from long to String we need to make changes to the dao which does a query using filter for that field. I mean we need to change query parameter from long to string. e.g from query.setFilter("fbId == " + fbId) to query.setFilter("fbId == \"" + fbId + "\"")

nischal commented 13 years ago

Unrelated to this project