Feature/issue full fields#2
Closed
iatsiuk wants to merge 14 commits into
Closed
Conversation
Add trashed, timestamps (canceledAt, completedAt, startedAt, etc.), SLA fields, branchName, customerTicketCount, creator, and cycle to issue GraphQL query and Issue struct. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Add Creator, Branch, Trashed, Cycle, timestamps (started, completed, canceled, triaged, archived, auto-archived, auto-closed) and SLA fields to printIssueDetail output. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Replaces single issueFields constant with issueListFields (compact, for listings) and issueDetailFields (full, for single-issue views). List queries no longer over-fetch detail-only fields. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Added number, customerTicketCount, slaHighRiskAt, slaMediumRiskAt, startedTriageAt, snoozedUntilAt, addedToCycleAt, addedToProjectAt, addedToTeamAt to printIssueDetail output with TDD (test first). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- use issueListFields in IssueCreate/UpdateMutation (callers use printIssueRow, not printIssueDetail) - display Number and CustomerTicketCount unconditionally (non-null schema fields) - fix column alignment: widen format from %-14s to %-15s to fit "Added to Cycle:" - add missing timestamp/SLA fields to test fixture and assertions (10 fields were untested) - add IssueBranchQuery to allQueries and detailQueries in TestIssueFieldsPresence; remove Create/UpdateMutation from detailQueries - document list/detail field set pattern in CLAUDE.md Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
issueFieldsintoissueListFields(compact) andissueDetailFields(full) to eliminate over-fetchingissue show: number, customerTicketCount, slaHighRiskAt, slaMediumRiskAt, startedTriageAt, snoozedUntilAt, addedToCycleAt, addedToProjectAt, addedToTeamAtissue showfieldsTest plan
make buildpasses (linter + build)go test -race ./...-- all tests passissue showdisplays all new fields correctlyissue listuses compact field set (no over-fetching)🤖 Generated with Claude Code