Questions tagged [fql.multiquery]

Multi-query: request a series of FQL (Facebook Query Language) queries in one call and returns the data at one time

This method takes a JSON-encoded dictionary called ''queries'' where the individual queries use the exact same syntax as a simple query. However, this method allows for more complex queries to be made. You can fetch data from one query and use it in another query within the same call.

132 questions
0
votes
1 answer

Can I get the list of friends who like my feed

Can I get the list of friends who like my feed I wanna get the friends list who like my feed. So I execute this query. But I get the empty result. What shouuld I modify to get thefriends list who like my feed. queries: { likeFriend: 'select…
0
votes
1 answer

Query of past events for a "like" page is not returning full list (as shown on actual page)

The code used to query (below) has not changed since before it was working correctly, but the page suddenly started only displaying one of the many past events. Has the functionality of the QL changed in some way or is this just a bug that I should…
Dan
  • 3,246
  • 1
  • 32
  • 52
0
votes
1 answer

get feed when some one tagged user in photo FQL

I want feed when some one tagged user in photo currently i am only able to get that photo but not feed with comments and likes as below select object_id,src from photo where pid in (SELECT pid FROM photo_tag WHERE subject=me()) FYI currently i…
0
votes
1 answer

Is batching queries to FQL with per-request access_tokens not allowed? It isn't working

Is it not possible to batch query the graph using 'method/fql.query?query=...' using multiple access tokens? I have never had trouble in the past batch querying non-fql endpoints with multiple access tokens, but with batch querying FQL calls, only…
0
votes
1 answer

fql query limit?

What is the daily limit for a user/website to fql multiquery facebook? I am building a website that queries a lot of facebook data for the user each time they log in? I wanted to know how many times our website can do this?
Gavin Hayes
  • 1
  • 1
  • 1
0
votes
1 answer

fql multi query

FB.api( { method: 'fql.query', query: 'select uid,name from user where uid in (select uid2 from friend where uid1 ='+me.id+') AND current_location='+me.location.name },function(data) { alert(data); } iam trying to get the friends based on the…
-1
votes
1 answer

Facebook - user's selected attending events data with FQL

I'm trying to get the name of a user's attending events with FQL, but I can't get true result. Is my SQL wrong or not possible to use? FQL: SELECT eid,name,start_time FROM event WHERE eid IN (SELECT eid FROM event_member WHERE uid = USER_ID and…
Salt Hareket
  • 764
  • 7
  • 18
-1
votes
1 answer

Is it possible to do an call for all the data in FaunaDB?

I am working with the demo of fauna. I Want to have the customer in the object, but now it is @refI work with NextJS. This is my object now. How can I get my customer info straight into my object?
-1
votes
1 answer

FQL Query that shows me the amount of male and female attendees of a random facebook event

Well, I have this code here that is a FQL Query that shows me all attendees of an random event from facebook. $fql = "SELECT uid FROM event_member WHERE eid = 461462343953933 AND start_time >= now() ORDER BY start_time descLIMIT 50 "; $param =…
-1
votes
1 answer

FQL get all photos from album

I'm using FBRequestConnection on iPhone for getting all photos from same album. I want to get all photos from album which has 11 photos in it and aid="100001996111955_72360". I wrote the below code, but it returned 4 photos, not 11. SELECT pid,…
Shamsiddin Saidov
  • 2,281
  • 4
  • 23
  • 35
-1
votes
1 answer

FQL : not able to get facebook user email-id?

I am using fql to fetch the list of all friends of a user and there basic info . How ever i am not able to get the email of user. below is my query : $frd_fql = "SELECT uid, name, username, first_name, …
-1
votes
1 answer

How can I get facebook albums with images from users

I am creating a facebook app and i want to display the users albums with the cover image, i have tried with code #1 but it is really really slow as i make a facebook api call in the foreach which makes my app take forever, so I am looking for…
1 2 3
8
9