I've created a few actions and object types for my application. For this question's purpose, let's assume I have an myapp:book
custom type (where myapp
is my application's namespace and book
is the custom type) and a myapp:read
action.
Is is possible answer any of the following queries using Facebook's Graph API (or any other FB API)?
- List all objects of type
myapp:book
. By that, I mean retrieve a list all pages that FB's scraper has stored which have ango:type
ofmyapp:book
. - List all actions that involve objects of type
myapp:book
. - List all
read
actions that occurred in my app. By that, I mean retrieve a list of all actions that were posted to FB which have anaction_type
ofmyapp:read
As far as I'm aware: no, no and no
Your own databases should have all of that information already though, depending on how you've implemented the app, certainly the first two if not necessarily the third
You can retrieve, for a given user, the list of actions of a particular type, but not 'all actions' or 'across all users'