Skip to content

Commit 5941c0d

Browse files
authored
Merge pull request #85515 from craigcaseyMSFT/patch-19
Update UI interaction terms
2 parents 4235c54 + 80fb195 commit 5941c0d

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

articles/cosmos-db/create-graph-java.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ The following snippets are all taken from the C:\git-samples\azure-cosmos-db-gra
101101
102102
Now go back to the Azure portal to get your connection information and copy it into the app. These settings enable your app to communicate with your hosted database.
103103
104-
1. In the [Azure portal](https://portal.azure.com/), click **Keys**.
104+
1. In the [Azure portal](https://portal.azure.com/), select **Keys**.
105105
106106
Copy the first portion of the URI value.
107107
@@ -160,28 +160,28 @@ Now go back to the Azure portal to get your connection information and copy it i
160160
161161
If you experience timeout errors, check that you updated the connection information correctly in [Update your connection information](#update-your-connection-information), and also try running the last command again.
162162
163-
Once the program stops, press Enter, then switch back to the Azure portal in your internet browser.
163+
Once the program stops, select Enter, then switch back to the Azure portal in your internet browser.
164164
165165
<a id="add-sample-data"></a>
166166
## Review and add sample data
167167
168168
You can now go back to Data Explorer and see the vertices added to the graph, and add additional data points.
169169
170-
1. Click **Data Explorer**, expand **sample-graph**, click **Graph**, and then click **Apply Filter**.
170+
1. Select **Data Explorer**, expand **sample-graph**, select **Graph**, and then select **Apply Filter**.
171171
172172
![Create new documents in Data Explorer in the Azure portal](./media/create-graph-java/azure-cosmosdb-data-explorer-expanded.png)
173173
174174
2. In the **Results** list, notice the new users added to the graph. Select **ben** and notice that the user is connected to robin. You can move the vertices around by dragging and dropping, zoom in and out by scrolling the wheel of your mouse, and expand the size of the graph with the double-arrow.
175175
176176
![New vertices in the graph in Data Explorer in the Azure portal](./media/create-graph-java/azure-cosmosdb-graph-explorer-new.png)
177177
178-
3. Let's add a few new users. Click the **New Vertex** button to add data to your graph.
178+
3. Let's add a few new users. Select **New Vertex** to add data to your graph.
179179

180180
![Create new documents in Data Explorer in the Azure portal](./media/create-graph-java/azure-cosmosdb-data-explorer-new-vertex.png)
181181

182182
4. In the label box, enter *person*.
183183

184-
5. Click **Add property** to add each of the following properties. Notice that you can create unique properties for each person in your graph. Only the id key is required.
184+
5. Select **Add property** to add each of the following properties. Notice that you can create unique properties for each person in your graph. Only the id key is required.
185185

186186
key|value|Notes
187187
----|----|----
@@ -192,31 +192,31 @@ You can now go back to Data Explorer and see the vertices added to the graph, an
192192
> [!NOTE]
193193
> In this quickstart you create a non-partitioned collection. However, if you create a partitioned collection by specifying a partition key during the collection creation, then you need to include the partition key as a key in each new vertex.
194194
195-
6. Click **OK**. You may need to expand your screen to see **OK** on the bottom of the screen.
195+
6. Select **OK**. You may need to expand your screen to see **OK** on the bottom of the screen.
196196
197-
7. Click **New Vertex** again and add an additional new user.
197+
7. Select **New Vertex** again and add an additional new user.
198198
199199
8. Enter a label of *person*.
200200
201-
9. Click **Add property** to add each of the following properties:
201+
9. Select **Add property** to add each of the following properties:
202202
203203
key|value|Notes
204204
----|----|----
205205
id|rakesh|The unique identifier for the vertex. If you don't specify an id, one is generated for you.
206206
gender|male|
207207
school|MIT|
208208

209-
10. Click **OK**.
209+
10. Select **OK**.
210210

211-
11. Click the **Apply Filter** button with the default `g.V()` filter to display all the values in the graph. All of the users now show in the **Results** list.
211+
11. ClSelectck the **Apply Filter** button with the default `g.V()` filter to display all the values in the graph. All of the users now show in the **Results** list.
212212
213-
As you add more data, you can use filters to limit your results. By default, Data Explorer uses `g.V()` to retrieve all vertices in a graph. You can change it to a different [graph query](tutorial-query-graph.md), such as `g.V().count()`, to return a count of all the vertices in the graph in JSON format. If you changed the filter, change the filter back to `g.V()` and click **Apply Filter** to display all the results again.
213+
As you add more data, you can use filters to limit your results. By default, Data Explorer uses `g.V()` to retrieve all vertices in a graph. You can change it to a different [graph query](tutorial-query-graph.md), such as `g.V().count()`, to return a count of all the vertices in the graph in JSON format. If you changed the filter, change the filter back to `g.V()` and select **Apply Filter** to display all the results again.
214214
215-
12. Now you can connect rakesh, and ashley. Ensure **ashley** is selected in the **Results** list, then click ![Change the target of a vertex in a graph](./media/create-graph-java/edit-pencil-button.png) next to **Targets** on lower right side. You may need to widen your window to see the button.
215+
12. Now you can connect rakesh, and ashley. Ensure **ashley** is selected in the **Results** list, then select ![Change the target of a vertex in a graph](./media/create-graph-java/edit-pencil-button.png) next to **Targets** on lower right side. You may need to widen your window to see the button.
216216
217217
![Change the target of a vertex in a graph](./media/create-graph-java/azure-cosmosdb-data-explorer-edit-target.png)
218218
219-
13. In the **Target** box type *rakesh*, and in the **Edge label** box type *knows*, and then click the checkbox.
219+
13. In the **Target** box enter *rakesh*, and in the **Edge label** box enter *knows*, and then select the check box.
220220
221221
![Add a connection between ashley and rakesh in Data Explorer](./media/create-graph-java/azure-cosmosdb-data-explorer-set-target.png)
222222

0 commit comments

Comments
 (0)