# 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.&#x20;

`end` would return:  **end**ing, **end**game, v**end**or, ag**end**a, tr**end**, bl**end**.&#x20;

### 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: tr**end,** bl**end** - but not the other examples above.&#x20;

### 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&#x20;

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 "!".

```
hello !world
```

#### Exact Phrase

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

```
"hello world"
"abcd-123"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.cws.app/central-workflow-system/general/workorder-search.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
