{
      post(
        input: {
          selector: {
            _id: "rijoxTpkSPXcTXRbN"
          }
        }
      ) {
        result {
          _id
          postedAt
          url
          canonicalSource
          title
          slug
          commentCount
          htmlBody
          baseScore
          voteCount
          pageUrl
          legacyId
          question
          tableOfContents
          user {
            username
            displayName
            slug
            bio
          }
          coauthors {
            _id
            username
            displayName
            slug
          }
        }
      }
    }
    
Run this query



    {
      comments(input: {
        terms: {
          view: "postCommentsTop",
          postId: "rijoxTpkSPXcTXRbN",
        }
      }) {
        results {
          _id
          user {
            _id
            username
            displayName
            slug
            bio
          }
          userId
          author
          parentCommentId
          pageUrl
          htmlBody
          baseScore
          voteCount
          postedAt
        }
      }
    }
    
Run this query



    {
      comments(input: {
        terms: {
          view: "questionAnswers",
          postId: "rijoxTpkSPXcTXRbN",
        }
      }) {
        results {
          _id
          user {
            _id
            username
            displayName
            slug
            bio
          }
          userId
          author
          parentCommentId
          pageUrl
          htmlBody
          baseScore
          voteCount
          postedAt
          answer
        }
      }
    }
    
Run this query