Skip to content

Commit ff7fd09

Browse files
committed
edits, fixed links
1 parent 21cd58e commit ff7fd09

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/search/TOC.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
href: search-create-service-portal.md
1616
- name: Create an index
1717
href: search-get-started-portal.md
18-
- name: Query with Search explorer
19-
href: search-explorer.md
2018
- name: Create an app
2119
href: search-create-app-portal.md
2220
- name: Create a skillset
2321
href: cognitive-search-quickstart-blob.md
2422
- name: Create a knowledge store
2523
href: knowledge-store-create-portal.md
24+
- name: Query with Search explorer
25+
href: search-explorer.md
2626
- name: C#
2727
href: search-get-started-dotnet.md
2828
- name: Java

articles/search/search-explorer.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,25 @@ ms.date: 03/27/2020
1313

1414
# Quickstart: Use Search explorer to run queries in the portal
1515

16-
**Search explorer** is a built-in query tool used for running queries against a search index in Azure Cognitive Search. This tool makes it easy to learn query syntax, test a query or filter expression, or validate the results of an index refresh by looking up a specific document.
16+
**Search explorer** is a built-in query tool used for running queries against a search index in Azure Cognitive Search. This tool makes it easy to learn query syntax, test a query or filter expression, or confirm the results of an index refresh by verifying newer content exists.
1717

18-
This quickstart uses a sample index and data to learn Search explorer. Requests are formulated using the [Search REST API](https://docs.microsoft.com/rest/api/searchservice/), with responses returned as JSON documents.
18+
This quickstart uses **realestate-us-sample-index** to demonstrate Search explorer. Requests are formulated using the [Search REST API](https://docs.microsoft.com/rest/api/searchservice/), with responses returned as JSON documents.
1919

2020
## Prerequisites
2121

2222
+ [Create an Azure Cognitive Search service](search-create-service-portal.md) or [find an existing service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) under your current subscription. You can use a free service for this quickstart.
2323

24-
+ **realestate-us-sample-index** is used for this quickstart. You can step through the [**Import data**](search-import-data-portal.md) wizard to generate the index from the built-in samples data source.
24+
+ **realestate-us-sample-index** is used for this quickstart. Step through the [**Import data**](search-import-data-portal.md) wizard to generate the index from the built-in samples data source.
2525

2626
## Start Search explorer
2727

2828
1. In the [Azure portal](https://portal.azure.com), open the search service page from the dashboard or [find your service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices).
2929

30-
1. Open Search explorer. You can start it from the command bar:
30+
1. Open Search explorer from the command bar:
3131

3232
![Search explorer command in portal](./media/search-explorer/search-explorer-cmd2.png "Search explorer command in portal")
3333

34-
Or use the **Search explorer** tab on an open index:
34+
Or use the embedded **Search explorer** tab on an open index:
3535

3636
![Search explorer tab](./media/search-explorer/search-explorer-tab.png "Search explorer tab")
3737

@@ -79,7 +79,7 @@ Add **$count=true** to get the number of matches found in an index. On an empty
7979

8080
## Limit fields in search results
8181

82-
Add [**$select**](search-query-odata-select) to limit results to the explicitly named fields for more readable output in **Search explorer**. To keep the search string and **$count=true**, prefix arguments with **&**.
82+
Add [**$select**](search-query-odata-select.md) to limit results to the explicitly named fields for more readable output in **Search explorer**. To keep the search string and **$count=true**, prefix arguments with **&**.
8383

8484
```http
8585
search=seattle condo&$select=listingId,beds,baths,description,street,city,price&$count=true

0 commit comments

Comments
 (0)