TownHallHQ / TownHall

MIT License
27 stars 13 forks source link

Comments Support #118

Open EstebanBorai opened 11 months ago

EstebanBorai commented 11 months ago

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
    }
  }
}