# Query String

It can be useful at times to update the browser's query string when your [Wire's ](/v2-1/essentials/creating-components.md)state changes.

## Example

Let's say you are building a [Wire](/v2-1/essentials/creating-components.md) to search articles, and want the query string to reflect the current search value like so:

```
https://yourapp.com/search-articles?search=some+string
```

This way, when a user hits the back button or bookmarks the page, you can get the initial state out of the query string rather than resetting the [Wire](/v2-1/essentials/creating-components.md) every time.

You can add a `queryString` variable to your [Wires](/v2-1/essentials/creating-components.md) and CBWIRE will update the query string every time the property value changes and also update the property when the query string changes.

```javascript
component extends="cbwire.models.Component" {

    data = {
        "search": ""
    };
    
    queryString = [ "search" ];
}
```

```html
<div>
    <input wire:model="search" type="search" placeholder="Search articles...">
</div>
```


---

# 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://cbwire.ortusbooks.com/v2-1/wire-features/query-string.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.
