Operators
Operators combine atoms into compound expressions.
Union (+ or |)
Returns documents matching either side.
tag:#api + tag:#sdk
tag:#api | tag:#sdk # equivalentIntersection (&)
Returns documents matching both sides.
tag:#api & status:publishedDifference (-)
Returns documents matching the left side but not the right side.
tag:#engineering - tag:#deprecatedGrouping (())
Parentheses control evaluation order.
(tag:#api | tag:#sdk) & status:publishedWithout parentheses, & binds tighter than +/|:
tag:#api + tag:#sdk & status:published
# equivalent to: tag:#api + (tag:#sdk & status:published)Precedence
From highest to lowest:
()— Grouping&,-— Intersection, Difference+,|— Union
Last updated on