But if i want to check that how many people did i sent friend notification?
I tried The fql query
SELECT uid_from, time, message FROM friend_request WHERE uid_to = me()
But it's showing me received requested friend list.
After that i tried:
SELECT uid_from, time, message FROM friend_request WHERE uid_from = me()
but it was showing index search error.
When i searched
SELECT uid_from, time, message FROM friend_request WHERE uid_from = me() AND uid_to = ""
then it returned me result.
Can anyone give me the solution in FQL query or would be good if any graph.api is available for this. Kindly provide me tested solution.