fusionbox / buggy

A bug tracker.
BSD 3-Clause "New" or "Revised" License
2 stars 2 forks source link

Advanced search #26

Open gavinwahl opened 7 years ago

gavinwahl commented 7 years ago

The old buggy supported these searches with special syntax in the search field:

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.

gavinwahl commented 7 years ago

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?