Skip to content

Commit 2f97040

Browse files
mark-terminusdbgitbook-bot
authored andcommitted
GitBook: [#37] No subject
1 parent fb722c9 commit 2f97040

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

readme/terminusx/quick-start/start-with-client.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,13 @@ client.create_database("example_db")
169169

170170
### Use the document interface
171171

172-
To use the TerminusX document interface, [create a schema](start-with-client.md#create-a-schema) and [add documents](start-with-client.md#add-documents) to the schema. Refer to [Documents](../../../terminusx/Explanation/DOCUMENTS.md) for an overview of the document interface. After creating or connecting to a database, create a schema to add and retrieve data. A simple player roster is used as an example. Using basic [Player roster](start-with-client.md#data-player-roster) data, the steps below are demonstrated.
172+
To use the TerminusX document interface, [create a schema](start-with-client.md#code-define-a-schema) and [add documents](start-with-client.md#code-add-documents) to the schema. Refer to [Documents](../../terminusx-db/explanations/documents.md) for an overview of the document interface. After creating or connecting to a database, create a schema to add and retrieve data. A simple player roster is used as an example. Using basic [Player roster](start-with-client.md#data-player-roster) data, the steps below are demonstrated.
173173

174-
* [Define a schema](start-with-client.md#code-define-a-schema)
175-
* [Add a schema](start-with-client.md#code-add-a-schema)
176-
* [Add documents](start-with-client.md#code-Add-documents)
177-
* [Get documents](start-with-client.md#code-get-documents)
178-
* [Query documents](start-with-client.md#code-query-documents)
174+
* [Create a schema](start-with-client.md#code-define-a-schema)
175+
* Add a schema
176+
* Add documents
177+
* Get documents
178+
* Query documents
179179

180180
#### Data: Player roster
181181

@@ -187,9 +187,9 @@ Doug | Full Back
187187
Karen | Center Forward
188188
```
189189

190-
#### Code: Define a schema
190+
#### Code: Create a schema
191191

192-
Define a schema object with properties `name` and `position`. The object is uniquely identified by `name`.
192+
Create a schema object with properties `name` and `position`. The object is uniquely identified by `name`.
193193

194194
{% tabs %}
195195
{% tab title="JavaScript" %}

0 commit comments

Comments
 (0)