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.

Facebook recently changed the way they represent timestamps from unix time to ISO-8601. See here. Before it was possible to write an fql statement like:

SELECT eid FROM event WHERE start_time < 1345178483

where 1345178483 is unix time. Are queries like this still possible with ISO-8601?

share|improve this question

2 Answers

up vote 1 down vote accepted

Yes, but you have to replace your time stamp with an ISO-8601 formatted string:

SELECT eid FROM event WHERE start_time < "2012-08-17T00:41:23-04:00"

Note that the old now() method in FQL doesn't work. Bug report

share|improve this answer

They've changed the api so that you can only compare indexable columns in the where clause. start_time is not indexable according to https://developers.facebook.com/docs/reference/fql/event/ so I guess you can't do this anymore.

share|improve this answer
Then why does this work? developers.facebook.com/tools/explorer/145634995501895/… – cpilko Aug 23 '12 at 12:18
Ah I see the problem now, you have to include eid in the where clause. "SELECT eid, start_time FROM event WHERE start_time > "2012-08-17T00:41:23-04:00" does NOT work but "SELECT eid, start_time FROM event WHERE start_time > "2012-08-17T00:41:23-04:00" AND eid IN (SELECT eid FROM event_member WHERE uid = 213367312037345)" does work. Sorry for the confusion, I've accepted your answer. Thanks! – stackOverlord Aug 24 '12 at 0:26

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.