I am using the Facebook iOS library to access users' friends' data via facebook query language. To search for specific friends by name, I am using the following NSString:
[NSString stringWithFormat:@"SELECT pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND strpos(lower(name),'%@') >= 0 ORDER BY name", name]
So the query would look something like this:
SELECT pic_square FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND strpos(lower(name),'firstname lastname') >= 0 ORDER BY name
I'm running into problems when the friends set their first names on facebook to nicknames - the query returns no results. For example, if I query Benjamin Button, but he has set his name on facebook to Ben Button, I'm out of luck.
How can I modify this query to allow for nicknames like this? Or at least to allow for some sort of wildcard operator at in the middle of the name?
Thanks! James