Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am attempting to develop a facebook application . I came across facebook graph api and fql to fetch data from facebbok. As per my application i need to fetch lots of information from facebook using either of one . Can anyone suggest which is more faster graph api or fql interm for fetching heavy data ?

Thanks :)

share|improve this question

2 Answers

up vote 2 down vote accepted

Graph api has its mertis and demerits , so does the fql.

Graph api is simple, easy to use and more structured (atleast for me), but fql is more powerful than graph api.

There are some queries which you cannot do in graph api or atleast you will need multiple calls from graph api but just a single call via fql.

In a nutshell,

There are operations which only fql can do (and graph api fails) but there is no operation which graph api can do and fql cannot :)

share|improve this answer

It depends on what you are trying to achieve. FQL is better if you want to get data that a Graph API call doesn't directly provide. For example, if you want to get information from multiple tables. In terms of speed, it really depends on how complex the FQL query is and how much data is retrieved from Facebook.

Simple calls will be quicker via the Graph API and must easer to call instead of the FQL equivalent. But, FQL is more powerful as already mentioned.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.