feat: comments update, resolve, and unresolve commands#108
Merged
flipbit03 merged 5 commits intoflipbit03:mainfrom Mar 7, 2026
Merged
feat: comments update, resolve, and unresolve commands#108flipbit03 merged 5 commits intoflipbit03:mainfrom
comments update, resolve, and unresolve commands#108flipbit03 merged 5 commits intoflipbit03:mainfrom
Conversation
Add three GraphQL mutations to complete the comment lifecycle: - commentUpdate: update a comment's body - commentResolve: resolve a comment thread (with optional resolving comment) - commentUnresolve: unresolve a previously resolved comment thread Includes CLI subcommands, usage reference, 9 offline tests, 2 SDK online tests, and 2 CLI online tests.
…resolve # Conflicts: # crates/lineark-sdk/tests/online.rs # crates/lineark/tests/offline.rs # crates/lineark/tests/online.rs
Brings in TeamGuard infrastructure from flipbit03#119. Migrates comment and find-branch tests from teams[0] to create_test_team() for full self-containment. The flipbit03#105 blocker no longer applies.
flipbit03
approved these changes
Mar 7, 2026
This was referenced Mar 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
commentUpdate,commentResolve,commentUnresolvemutations tooperations.tomland regenerate SDKlineark comments update <UUID> --body TEXT— update a comment's bodylineark comments resolve <UUID> [--resolving-comment UUID]— resolve a comment threadlineark comments unresolve <UUID>— unresolve a comment threadCommentReflean type withresolved_atfor meaningful resolve/unresolve outputlineark usagereferenceTest plan
make check— cleanmake test— all offline tests pass (191)comment_update_changes_body,comment_resolve_and_unresolve--resolving-commentflagTeamGuardpattern for self-containment