TownHall icon indicating copy to clipboard operation
TownHall copied to clipboard

Comments Support

Open LeoBorai opened this issue 1 year ago • 0 comments

Comments are Posts where the parentId is specified.

Comments doesnt have a Title, different to regular posts.

When querying posts, comments should also be queried and paginated.

posts(first: 20, after: "post_xyz") {
  title
  content
  author {
    username
  }
  comments(first: 20) {
    content
    author {
      username
    }
  }
}

LeoBorai avatar Aug 06 '23 15:08 LeoBorai