Ok so basically I'd like to be able to query the Facebook Open Graph API with wildcards to build an autocomplete for movies/music/etc.
Something like this works properly: https://graph.facebook.com/search?q=twilight&type=page
But partial matches don't work: https://graph.facebook.com/search?q=twilig&type=page
Putting a % at the end seems to turn up more results, so I think I might be on the right track, but it's still not quite right: https://graph.facebook.com/search?q=twilig%&type=page
I haven't been able to find any documentation on using wildcards. Anyone have any ideas?