The list of post comments should be retrieved by a separate request, calling getPostComments query. The query returns the list of comments related to the given post with the pagination and possibility to change the order (default sorting is by the creation date, ascending). The following arguments can be used in the query:
ArgumentTypeDescriptionDefault
postIdIntRequired. The post ID to get the related comments.
afterCursorReturns results that come after the specified cursor. Should be used together with first parameter. Cannot be used if before is set.
beforeCursorReturns results that come before the specified cursor. Should be used together with last parameter. Cannot be used if after is set.
firstIntegerReturns up to the first N elements from the list. Required if after parameter is set. Cannot be used together with last.
lastIntegerReturns up to the first N elements from the list. Required if before parameter is set. Cannot be used together with first.
reverseBooleanAllows to change the order of the sorting to DESC.FALSE
  query getPostComments {
    getPostComments(postId: 169, first: 2) {
      edges {
        node {
          id
          text
          created
          isLiked
          likesNumber
          parentPost {
            id
          }
          authorUserContext {
            id
            uuid
          }
          cta {
            actionId
            title
            arguments {
              key
              value
            }
          }
        }
      }
      pageInfo {
        hasNextPage
        hasPreviousPage
        endCursor
      },
      totalItems
    }
  }
The query returns the list of the Post objects. Detailed description and the full list of available properties can be found here.