From ca6ca36dc77c80ad24ce0af27d6654d9ce9ef865 Mon Sep 17 00:00:00 2001 From: Santhosh Reddy Vootukuri <65618035+sunnynagavo@users.noreply.github.com> Date: Sun, 21 Apr 2024 20:21:34 -0700 Subject: [PATCH] Update URL link for Load data page The URL is incorrect as it just loads the same page. correct URL : https://github.com/AzureCosmosDB/Azure-OpenAI-Node.js-Developer-Guide/blob/main/Labs/load_data/README.md --- 08_Load_Data/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/08_Load_Data/README.md b/08_Load_Data/README.md index 6d26b00..f8c73c6 100644 --- a/08_Load_Data/README.md +++ b/08_Load_Data/README.md @@ -16,7 +16,7 @@ When loading data, bulk operations are preferred over adding each document indiv This lab will load the Cosmic Works Customer, Product, and Sales data into Azure Cosmos DB API for MongoDB collections using bulk operations. Both the Azure Cosmos DB Emulator and Azure Cosmos DB account in Azure are supported for completion of this lab. -Please visit the lab repository to complete [this lab](https://github.com/AzureCosmosDB/Azure-OpenAI-Node.js-Developer-Guide/blob/main/08_Load_Data/README.md). +Please visit the lab repository to complete [this lab](https://github.com/AzureCosmosDB/Azure-OpenAI-Node.js-Developer-Guide/blob/main/Labs/load_data/README.md). This lab demonstrates the use of bulk operations to load product, customer, and sales data into Azure Cosmos DB API for MongoDB collections. As an example, the following code snippet inserts product data using the `bulkWrite` method allowing for insert functionality using the `InsertOne` operation. The bulkWrite method is used to perform multiple write operations in a single batch, write operations can include a mixture of insert, update, and delete operations: