Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
Update to JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
GraemeMalcolm committed Nov 27, 2023
1 parent 83f1fde commit 9e54aeb
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Instructions/23-search-skills.md
Original file line number Diff line number Diff line change
Expand Up @@ -363,10 +363,13 @@ Now you need to include your function as a custom skill in the search solution s
Now that you have an index, you can search it.
1. At the top of the blade for your Azure AI Search resource, select **Search explorer**.
2. In Search explorer, in the **Query string** box, enter the following query string, and then select **Search**.
2. In Search explorer, change the view to **JSON view**, and then submit the following search query:
```
search=Las Vegas&$select=url,top_words
```json
{
"search": "Las Vegas",
"select": "url,top_words"
}
```
This query retrieves the **url** and **top_words** fields for all documents that mention *Las Vegas*.
Expand Down

0 comments on commit 9e54aeb

Please sign in to comment.