I've just begun experimenting with the Facebook API, and while I'm impressed with the scope of the API, and the documentation that is there, there seems to be a lot of documentation missing. Or maybe I just don't know where to find it.
For example, after a bit of Googling I discovered it's possible to simulate a "LIKE" query in FQL by adding something like this to the WHERE component:
strpos(lower(message),"whatever!") >=0
I didn't see any info about that in Facebooks dev documentation, but it makes sense and works well for top level objects like "message" or "name" in the stream table. However, I can't seem to go deeper, such as to access media.href. This does not work:
strpos(lower(media.href), "judeosborn.com!") >=0
How do I go about accessing those sub-objects? Or can anyone point me to more detailed documentation about FQL?