How do we search for a user by name within user's friends list. I"m able to fetch whole friends list using this api...
"https://graph.facebook.com/v2.9/#{facebook_id}/friends?access_token=#{access_token}"
But I'm not sure how do we query within friends list? Does Facebook support that?
Some SO answers says to fetch the whole friends list and search within the list ourself but I guess this may not be the right solution as users friends might grow we can't cache our result anywhere and fetching whole list every time also would not be a efficient solution. Does anyone knows any other work around?
Please guide me in right direction. Thanks.