Skip to content

Commit aa6028a

Browse files
committed
wizard updates
1 parent cc17c3c commit aa6028a

File tree

4 files changed

+143
-41
lines changed

4 files changed

+143
-41
lines changed

articles/search/search-explorer.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,19 @@ Before you begin, have the following prerequisites in place:
4646

4747
There are two approaches for querying in Search explorer.
4848

49-
+ The default search bar accepts an empty query or free text query with booleans. For example, `seattle condo +parking`.
49+
+ Query view provide a default search bar. It accepts an empty query or free text query with booleans. For example, `seattle condo +parking`.
5050

5151
+ JSON view supports parameterized queries. Filters, orderby, select, count, searchFields, and all other parameters must be set in JSON view.
5252

53+
JSON view provides intellisense for parameter name completion. Place the cursor inside the JSON view and type a space character to show a list of all query parameters, or type a single letter like "s" to show just the query parameters starting with "s". Intellisense doesn't exclude invalid parameters so use your best judgement.
54+
5355
Switch to **JSON view** for parameterized queries. The examples in this article assume JSON view throughout. You can paste JSON examples from this article into the text area.
5456

5557
:::image type="content" source="media/search-explorer/search-explorer-json-view.png" alt-text="Screenshot of the JSON view selector." border="true":::
5658

5759
## Run an unspecified query
5860

59-
In Search explorer, POST requests are formulated internally using the [Search POST REST API](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2023-10-01-preview&preserve-view=true), with responses returned as verbose JSON documents.
61+
In Search explorer, POST requests are formulated internally using the [Search POST REST API](/rest/api/searchservice/documents/search-post?view=rest-searchservice-2024-05-01-preview&preserve-view=true), with responses returned as verbose JSON documents.
6062

6163
For a first look at content, execute an empty search by clicking **Search** with no terms provided. An empty search is useful as a first query because it returns entire documents so that you can review document composition. On an empty search, there's no search score and documents are returned in arbitrary order (`"@search.score": 1` for all documents). By default, 50 documents are returned in a search request.
6264

0 commit comments

Comments
 (0)