I fetched posts in facebook group using below FQL, but I found that they except question posts in fetched posts.
Used FQL Query:
SELECT post_id, created_time, permalink, message
FROM stream WHERE source_id = [group_id]
I used below FQL, and I fetch question which is a people belong specific facebook group.
SELECT created_time, id, is_published, question, owner, updated_time
FROM question WHERE owner = 'object_id'
I want to know relationship between question table and stream tables in FQL.
and I want to fetch all questions posts in specific facebook group.
thank you for the tip.