1

fql query.if を使用して、ページのすべてのコメントを含む各投稿 ID を取得したい -

SELECT text,post_id  FROM comment  WHERE post_id IN(SELECT post_id  FROM stream  WHERE source_id=page_id_here) 

これは戻ります-

{
  "data": [
    {
      "text": "Would be nice if my website would let me do the update. It says I have the most current version 2.5.9 :(",
      "post_id": "2211155996_10151336546425997"
    },
    {
      "text": "All of mine just started showing the update message in the last hour and just got the emails from Admin tools.",
      "post_id": "2211155996_10151336546425997"
    },
........continues

ご覧のとおり、1つのオブジェクトでテキストとpost_idを返します。私が望むのは、post_idとそのすべてのコメントが1つのオブジェクトにあることです。1時間苦労しているので、答えが得られることを願っています。結合を使用した複数のクエリと関係があります

4

0 に答える 0