Example Search Patterns
'+' signifies AND operation
ex: Car + Blue will only return results that contain Car AND Blue
'|' signifies OR operation
ex: Car | Blue will only return results that contain either Car OR Blue
'"' wraps a number of tokens to signify a phrase for searching
ex: “Blue Car” will only return results that contain the exact term “Blue Car”
'*****' at the end of a term signifies a prefix query
ex: Carbo* will only return results that contain terms that start with “Carbo.” So Carbohydrate, but not Carburetor.