It seems like all the filters currently use logical AND
by default. E.g. is:issue label:bug bug in:title
basically does is:issue && label:bug && bug in:title
.
My question is, whether it’s possible to make a query like: is:issue && label:bug || bug in:title
.
Related: Can I search github labels with logical operator OR?, but this deals with logical or within labels only. I am looking for something more generic.
Edit: According to Search REST API docs, operators are supported
have more than five AND, OR, or NOT operators
but I couldn't find anything related.