Skip to content

Commit

Permalink
Adds canceledAt filter to issues (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
bougyman authored Feb 7, 2024
1 parent 29c36b9 commit 89ccd59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
linear-cli (0.9.2)
linear-cli (0.9.3)
base64 (~> 0.2)
dry-cli (~> 1.0)
dry-cli-completion (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/linear/models/issue.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Issue
many_to_one :team
one_to_many :comments

BASIC_FILTER = { completedAt: { null: true } }.freeze
BASIC_FILTER = { completedAt: { null: true }, canceledAt: { null: true } }.freeze

Base = fragment('BaseIssue', 'Issue') do
id
Expand Down

0 comments on commit 89ccd59

Please sign in to comment.