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
  • 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
  • Searching is not case sensitive
  • Currently only whole word searching is supported.
  • Wildcard * searching is currently not supported

If your search returns no results: 

  1. Check if your spelling is correct
  2. Remove quotes around phrases to match each world individually: "cat granada" will match less than cat granada.
  3. Consider loosening your query with OR: cat granada will match less than cat OR granada 

If your search returns too many results:

  1. Add quotes around phrases to limit searching.  "Brooklyn Bridge" will return more specific results than Brooklyn Bridge.