We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The old buggy supported these searches with special syntax in the search field:
assigned:foo
foo
me
created:foo
involved:foo
project:foo
f.*o.*o.*
state:resolved
priority:high
"foo bar"
#:123
!filter
filter
The filters combine:
So assigned:foo assigned:bar priority:high parses as (assigned:foo OR assigned:bar) AND priority:high.
assigned:foo assigned:bar priority:high
(assigned:foo OR assigned:bar) AND priority:high
!assigned:me involved:me is (NOT assigned:me) AND involved:me
!assigned:me involved:me
(NOT assigned:me) AND involved:me
#:123 #:456 #:789 is #:123 OR #:456 OR #:789.
#:123 #:456 #:789
#:123 OR #:456 OR #:789
The text was updated successfully, but these errors were encountered:
Is the way filters of the same type combine compatible with AND and OR conditions?
what should assigned:a assigned:b (assigned:c AND priority:high) parse as?
assigned:a assigned:b (assigned:c AND priority:high)
Sorry, something went wrong.
No branches or pull requests
The old buggy supported these searches with special syntax in the search field:
assigned:foo
search for bugs assigned to someone with a name offoo
.me
is an alias for the current user.created:foo
involved:foo
searches for bugs thatfoo
has created, commented in, mentioned in, or been assigned to.project:foo
searches for bugs in projects whose title matches the regexf.*o.*o.*
state:resolved
priority:high
"foo bar"
fulltext searches for foo immediately followed by bar, ie phrase search#:123
filters for bug number 123!filter
negatesfilter
The filters combine:
So
assigned:foo assigned:bar priority:high
parses as(assigned:foo OR assigned:bar) AND priority:high
.!assigned:me involved:me
is(NOT assigned:me) AND involved:me
#:123 #:456 #:789
is#:123 OR #:456 OR #:789
.The text was updated successfully, but these errors were encountered: