Workorder Search

Searching

By default, when you enter text into the search bar, it will search for anything the matches the beginning, middle or end of what you have entered.

end would return: ending, endgame, vendor, agenda, trend, blend.

Wildcards

You may use the star (*) to match any character. This can be useful to find things that begin or end with something.

end* would return: trend, blend - but not the other examples above.

Operators

And

There is always implicit AND operator, so hello world means that both "hello" and "world" must be present in the matching document.

Or

If you want to find results that contain more than one pattern, you may combine the patterns using a pipe "|".

hello | world

Not

To exclude results that contain a word, you can prefix with an exclamation "!".

Exact Phrase

If you want a specific sequence of characters, you may wrap them in double quotes to get an exact match.

Last updated