* Fixed Search Readme

* Updated changelog
This commit is contained in:
Sarangan Rajamanickam 2020-07-31 13:30:13 -07:00 коммит произвёл GitHub
Родитель 65a6a6579a
Коммит 6384f602b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 10 удалений

Просмотреть файл

@ -1,7 +1,7 @@
# Release History
## 11.0.2 (Unreleased)
## 11.0.2 (2020-07-31)
- Fixed the samples in the Readme File. Please refer [#10383](https://github.com/Azure/azure-sdk-for-js/pull/10383) for further details.
## 11.0.1 (2020-07-20)
- [BugFix] Set the correct continuation token in the search documrnts API. Please refer [#10146](https://github.com/Azure/azure-sdk-for-js/pull/10146) for further details.

Просмотреть файл

@ -22,13 +22,9 @@ Use the @azure/search-documents client library to:
[Source code](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/search/search-documents/) |
[Package (NPM)](https://www.npmjs.com/package/@azure/search-documents) |
[API reference documentation](https://aka.ms/azsdk/js/search/docs) |
<<<<<<< HEAD
[REST API documentation](https://docs.microsoft.com/rest/api/searchservice/) |
[Product documentation](https://docs.microsoft.com/azure/search/)
=======
[Product documentation](https://docs.microsoft.com/azure/search/) |
[Samples](https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/search/search-documents/samples)
>>>>>>> 1488623e0... fix link in search-documents
## Getting started
@ -113,7 +109,7 @@ async function main() {
// Let's get the top 5 jobs related to Microsoft
const searchResults = await client.search("Microsoft", { top: 5 });
for await (const result of searchResults.results) {
console.log(`${result.business_title}\n${result.job_description}\n`);
console.log(`${result.document.business_title}\n${result.document.job_description}\n`);
}
}
@ -349,9 +345,9 @@ async function main() {
});
for await (const result of searchResults.results) {
// result has HotelId, HotelName, and Rating.
// Trying to access result.Description would emit a TS error.
console.log(result.HotelName);
// result.document has HotelId, HotelName, and Rating.
// Trying to access result.document.Description would emit a TS error.
console.log(result.document.HotelName);
}
}