Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我怎样才能获得完整的帖子/评论?和
SELECT post_id, message, message_tags, description, description_tags FROM stream WHERE source_id = me()
我得到了我发布的评论的“剪切”版本(在消息字段中)。
使用带有 post_id 的图表给我带来了与结果相同的修剪消息。是否有其他“表”可以通过 post_id 查询评论?
可以在下面找到一个示例。
此致。
你需要得到这个comments领域
comments
SELECT post_id, comments FROM stream WHERE source_id = me()
您应该阅读FQL - 流文档页面