The following query will get all public posts about the word invested.
https:graph.facebook.com/search?q=invested&type=post&fields=id,type,message
however, only about half have type=status. The rest are links videos and pictures.
Substituting type=status is invalid.
Field Expansion seems to offer a solution, but my first interpretation of it is incorrect.
https:graph.facebook.com/search?q=invested&type=post&fields=id,type(status),message
What is the correct way to get only the status messages?
Before you say it, I know I could just filter them on my end, but I'm looking into this solution because it would be faster.