feat: Add ancestor_id field and implement epic/child filtering
Amp-Thread-ID: https://ampcode.com/threads/T-22f7d7c5-6f7b-4783-beda-8494360d887a Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
@@ -271,6 +271,28 @@ type IssueFilter struct {
|
||||
TitleSearch string
|
||||
IDs []string // Filter by specific issue IDs
|
||||
Limit int
|
||||
|
||||
// Pattern matching
|
||||
TitleContains string
|
||||
DescriptionContains string
|
||||
NotesContains string
|
||||
|
||||
// Date ranges
|
||||
CreatedAfter *time.Time
|
||||
CreatedBefore *time.Time
|
||||
UpdatedAfter *time.Time
|
||||
UpdatedBefore *time.Time
|
||||
ClosedAfter *time.Time
|
||||
ClosedBefore *time.Time
|
||||
|
||||
// Empty/null checks
|
||||
EmptyDescription bool
|
||||
NoAssignee bool
|
||||
NoLabels bool
|
||||
|
||||
// Numeric ranges
|
||||
PriorityMin *int
|
||||
PriorityMax *int
|
||||
}
|
||||
|
||||
// SortPolicy determines how ready work is ordered
|
||||
|
||||
Reference in New Issue
Block a user