Hi there. I’m exploring using the GraphQL API to look at comments for a page. So far, I’ve got this query working.
query getPageWithComments($id: ID!) {
confluence {
page(id: $id) {
title
body {
editor2 {
value
}
}
comments {
__typename
author {
user {
name
}
}
body {
editor2 {
value
}
}
commentId
}
}
}
}
This works well! This gives me all the comments. But I’d like to see them hierarchically, i.e. I need a parentCommentId. Unfortunately, no such field exists.
Are there any plans to implement a parentCommentId field?