TownHall
TownHall copied to clipboard
Comments Support
Comments are Post
s 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
}
}
}