You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/search/search-howto-reindex.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -49,7 +49,7 @@ Queries continue to run, but if you're updating or removing existing fields, you
49
49
50
50
+ For updating the contents of simple fields and subfields in complex types, list only the fields you want to change. For example, if you only need to update a description field, the payload should consist of the document key and the modified description. Omitting other fields retains their existing values.
51
51
52
-
+ For merging inline changes into string collection, provide the entire value. Recall the `tags` field example from the previous section. New values overwrite the old values, and there is no merging at the field content level.
52
+
+ For merging inline changes into string collection, provide the entire value. Recall the `tags` field example from the previous section. New values overwrite the old values, and there's no merging at the field content level.
53
53
54
54
Here's a [REST API example](search-get-started-rest.md) demonstrating these tips:
Copy file name to clipboardExpand all lines: articles/search/search-security-rbac.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -277,15 +277,15 @@ This approach assumes Visual Studio Code with a REST client extension.
277
277
az account get-access-token --query accessToken --output tsv
278
278
```
279
279
280
-
1.In a new text file in Visual Studio Code, paste in these variables:
280
+
1.Paste these variables in a new text file in Visual Studio Code.
281
281
282
282
```http
283
283
@baseUrl = PASTE-YOUR-SEARCH-SERVICE-URL-HERE
284
284
@index-name = PASTE-YOUR-INDEX-NAME-HERE
285
285
@token = PASTE-YOUR-TOKEN-HERE
286
286
```
287
287
288
-
1. Paste in and then send a request that uses the variables you've specified. For the "Search Index Data Reader" role, you can send a query. You can use any [supported API version](/rest/api/searchservice/search-service-api-versions).
288
+
1. Paste and then send a request that uses the variables you've specified. For the "Search Index Data Reader" role, you can send a query. You can use any [supported API version](/rest/api/searchservice/search-service-api-versions).
289
289
290
290
```http
291
291
POST https://{{baseUrl}}/indexes/{{index-name}}/docs/search?api-version=2023-11-01 HTTP/1.1
@@ -380,7 +380,7 @@ If you're already a Contributor or Owner of your search service, you can present
0 commit comments