nexus_get_comment_thread
Retrieve a full comment thread with all top-level comments and replies via GraphQL, avoiding REST rate limits. Use it to read discussions when comment search is unavailable.
Instructions
Get a comment thread with all top-level comments and their replies.
Backed by the v2 GraphQL API, which does NOT consume the v1 REST rate-limit quota. Useful to read replies on threads where nexus_search_comments is unavailable (that endpoint is currently broken upstream).
NOTE: only thread IDs returned by the GraphQL API itself resolve (e.g. from nexus_search_mods-related queries or createComment). Thread IDs scraped from mod-page posts-tab HTML do NOT resolve ("not found").
Returns: JSON {id, comments: {totalCount, nodes: [{id, body, createdAt, likesCount, isPinned, creator, replies: {totalCount, nodes}}]}}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | Comment thread ID. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |