i am using yahoo api for importing contact into my php website. I use the query:
$query = sprintf("SELECT * from social.contacts WHERE guid=me");
$response = $yahoo->query($query);
but the issue is that it returns only 10 datas where as i have 11. more over i tried to go to their developer console: http://developer.yahoo.com/yql/console/#h=select+*+from+social.contacts+where+guid%3Dme and tried out the query but is still returns 10 results.
http://developer.yahoo.com/yql/guide/paging.html
Quote
So 10 results is a default behaviour, if you want more, specify another
limit
value.