Skip to content

Commit 020ece4

Browse files
committed
formatting
1 parent 4f3356d commit 020ece4

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

articles/search/cognitive-search-quickstart-blob.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -143,28 +143,29 @@ Warnings are common in skillset execution. As you become familiar with how skill
143143

144144
After an index is created, use **Search explorer** to return results.
145145

146-
1. On the left, select **Indexes*** and then select the index. **Search explorer** is on the first tab.
146+
1. On the left, select **Indexes** and then select the index. **Search explorer** is on the first tab.
147147

148-
1. Enter a search string to query the index, such as `satya nadella`. The search bar accepts keywords, phrases, and operators (`"Satya Nadella" +"Bill Gates" +"Steve Ballmer"`).
148+
1. Enter a search string to query the index, such as `satya nadella`. The search bar accepts keywords, quote-enclosed phrases, and operators (`"Satya Nadella" +"Bill Gates" +"Steve Ballmer"`).
149149

150150
Results are returned as verbose JSON, which can be hard to read, especially in large documents. Some tips for searching in this tool include the following techniques:
151151

152-
+ Switch to JSON view to specify parameters.
152+
+ Switch to JSON view to specify parameters that shape results.
153+
+ Add `select` to limit the fields in results.
154+
+ Add `count` to show the number of matches.
155+
+ Use CTRL-F to search within the JSON for specific properties or terms.
156+
157+
:::image type="content" source="media/cognitive-search-quickstart-blob/search-explorer.png" alt-text="Screenshot of the Search explorer page." border="true":::
153158

154-
+ Add `count` and `select` parameters to show the number of matches and to limit the fields in results.
159+
Here's some JSON you can paste into the view:
155160

156161
```json
157162
{
158163
"search": "\"Satya Nadella\" +\"Bill Gates\" +\"Steve Ballmer\"",
159164
"count": true,
160-
"select": "people, content"
165+
"select": "content, people"
161166
}
162167
```
163168

164-
+ Use CTRL-F to search within the JSON for specific properties or terms.
165-
166-
:::image type="content" source="media/cognitive-search-quickstart-blob/search-explorer.png" alt-text="Screenshot of the Search explorer page." border="true":::
167-
168169
> [!TIP]
169170
> Query strings are case-sensitive so if you get an "unknown field" message, check **Fields** or **Index Definition (JSON)** to verify name and case.
170171

0 commit comments

Comments
 (0)