The default search operator is OR, meaning if you search for blue gray it will search for assets containing blue OR gray. By default, OR is implied as the operator between search terms.
You can change the search operator to AND by explicitly adding the keyword AND (all caps) or && in between search terms.
tags:logo AND blue
tags:logo && blue
If you are looking to exclude assets that are in a specific collection or tag, you can use NOT. This would be written as
NOT tags: "logo"
Searching for assets that do not have labels associated with them would be written as
NOT label: *
Was this article helpful?
YesNo