Is it possibile to filter results from Graph API Search by number range? When I type:
fields=name,likes&q=mobile&type=page
I get number of fans of each page.
I can also get the number of events attendes:
attending.limit(1).summary(true)
Can I use math operators for this statistics? Ex. to filter pages, that has over 1000 fans? Something like: Fields:likes>100 (it’s my idea, not a code).