Help
-
Boolean operations:
-
-
AND: To search for a record that contains multiple fields, just string the fields together.
- For example the search: cat Granada-> all results that contain the words cat and Granada
-
OR: To search for a record that contains one field or another field use OR
- For example the search: cat OR Granada -> all results that contain either cat or Granada or both
-
NOT: To search for a record that contains one field but doesn't contain another use -
- For example the search: cat -Granada -> all results that contain cat but not Granada
-
AND: To search for a record that contains multiple fields, just string the fields together.
-
Phrase Searching
-
To search a phrase use double quotes
- For example the search "Brooklyn Bridge" -> all results that contain only those two words in that sequence
-
To search a phrase use double quotes
- Searching is not case sensitive
- Currently only whole word searching is supported.
- Wildcard * searching is currently not supported
If your search returns no results:
- Check if your spelling is correct
- Remove quotes around phrases to match each world individually: "cat granada" will match less than cat granada.
- Consider loosening your query with OR: cat granada will match less than cat OR granada
If your search returns too many results:
- Add quotes around phrases to limit searching. "Brooklyn Bridge" will return more specific results than Brooklyn Bridge.