Skip to content

Commit 009a734

Browse files
OJ423gitbook-bot
authored andcommitted
GITBOOK-112: No subject
1 parent 39f8315 commit 009a734

25 files changed

+88
-234
lines changed

explanations/document-graph-db/acid.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
---
2-
description: An overview of ACID database transactions and implementation in TerminusDB.
2+
description: >-
3+
An overview of ACID database transactions and implementation in TerminusDB and
4+
TerminusCMS.
35
---
46

57
# ACID Transactions

explanations/document-graph-db/documents.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: >-
3-
The types of documents available in TerminusDB with examples of their
4-
definitions and interactions.
3+
The types of documents available in TerminusDB and TerminusCMS with examples
4+
of their definitions and interactions.
55
---
66

77
# Documents

explanations/document-graph-db/graphs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: >-
3-
An introduction to the hierarchy and system of graphs used by TerminusDB for
4-
collaboration and revision control.
3+
An introduction to the hierarchy and system of graphs used by TerminusDB and
4+
TerminusCMSfor collaboration and revision control.
55
---
66

77
# Graphs

explanations/document-graph-db/immutability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
description: >-
3-
An explanation of how TerminusDB implements immutability, and handles deleted
4-
and new data.
3+
An explanation of how TerminusDB & TerminusCMS implements immutability, and
4+
handles deleted and new data.
55
---
66

77
# Immutability

explanations/document-graph-db/terminusdb-intro.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ Read our [white paper on succinct data structures and delta encoding in modern d
7676

7777
[Get Started](../../terminusdb/index.md) with an overview of the available [Installation Options](../../terminusdb/install/) and an overview of the [TerminusDB Interfaces](../../guides/interface-guides/) and their interconnections.
7878

79-
#### TerminusX
79+
#### TerminusCMS
8080

81-
An [Introduction to TerminusX](terminusx-intro.md) the cloud infrastructure underpinning TerminusDB.
81+
Take a look at the [product tour of TerminusCMS](../../terminuscms/product-tour/) for information about the headless content management system.
8282

8383
#### Documents
8484

explanations/document-graph-db/terminusx-intro.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

guides/how-to-guides/administer-the-database.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@ description: The basics for administering your database
44

55
# Administer the Database
66

7-
There are several ways to work with TerminusDB. This section aims to point you in the right direction to enable you to get started with ease.Follow the links below to take you to the area of interest:
7+
There are several ways to work with TerminusDB. This section aims to point you in the right direction to enable you to get started with ease. Follow the links below to take you to the area of interest:
88

9-
| Getting Started | Further Reading |
10-
| ---------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
11-
|[JavaScript Client Basics](../interface-guides/javascript-client.md) | [​​JavaScript Client Reference Guide](../reference-guides/javascript-client-reference/woqlclient.md) |
12-
| ​​[Python Client Basics](../interface-guides/python-client.md) | [​​Python Client Reference Guide](../reference-guides/python-client-reference/terminusdb\_client.client.md) |
13-
| ​​[Command Line Interface](../interface-guides/cli.md)| |
14-
| [GraphQL Reference](../reference-guides/graphql-reference/graphql\_query.md) | |
9+
| Getting Started | Further Reading |
10+
| ------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------- |
11+
|[JavaScript Client Basics](../interface-guides/javascript-client.md) | [​​JavaScript Client Reference Guide](../reference-guides/javascript-client-reference/woqlclient.md) |
12+
| ​​[Python Client Basics](../interface-guides/python-client.md) | [​​Python Client Reference Guide](../reference-guides/python-client-reference/terminusdb\_client.client.md) |
13+
| [GraphQL Reference](../reference-guides/graphql-reference/graphql\_query.md)[​​](../reference-guides/cli.md)| [Command Line Interface Reference Guide](../reference-guides/cli.md) |
1514

1615
​​​​

guides/how-to-guides/data-modeling-in-terminusdb.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
---
2-
description: Modeling data with the dashboard and JSON
2+
description: >-
3+
Modeling data and content within TerminusDB and TerminusCMS using the UI and
4+
JSON
35
---
46

5-
# Data Modeling in TerminusDB
7+
# Model Data
68

79
## Visual data modeling using the dashboard
810

9-
Use the **Data Product Model** view in [TerminusX](https://dashboard.terminusdb.com) or the local TerminusDB dashboard ([including in bootstrap install](../../terminusdb/install/install-as-docker-container.md)) to visually build simple or complex data models. The diagrams further below illustrate two possible implementations of the organization model introduced in the previous section. In addition to visually building models, the dashboard enables:
11+
Use the **Data Product Model** view in [TerminusCMS](https://dashboard.terminusdb.com) or the local TerminusDB dashboard ([including in bootstrap install](../../terminusdb/install/install-as-docker-container.md)) to visually build simple or complex data models. The diagrams further below illustrate two possible implementations of the organization model introduced in the previous section. In addition to visually building models, the dashboard enables:
1012

1113
* Flexible relationships between elements such as documents and sub-documents, and classes and sub-classes.
1214
* Enumeration objects related to document elements.
@@ -27,7 +29,7 @@ The diagram below illustrates an implementation of the organization model using
2729

2830
### A class-based document model
2931

30-
The diagram below illustrates a more intuitive implementation of the organization model using documents and sub-documents, or classes or sub-classes. This approach enables sub-documents to inherit the properties of the parent document - similar to inheritance in Object-Oriented Programming. See Data modeling using JSON for more information.
32+
The diagram below illustrates a more intuitive implementation of the organization model using documents and sub-documents, or classes or sub-classes. This approach enables sub-documents to inherit the properties of the parent document - similar to inheritance in Object-Oriented Programming. 
3133

3234
#### Diagram: The organization model using classes and sub-classes
3335

guides/how-to-guides/json-diff-and-patch-demonstration.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ Install a [JavaScript](../../terminusdb/install-client/install-javascript-client
1616

1717
Install and run the [docker container](../../terminusdb/install/install-as-docker-container.md) on `localhost`
1818

19-
#### Use the client with TerminusX
20-
21-
Or to use **TerminusX**, [log into your account or sign-up](https://dashboard.terminusdb.com).
22-
2319
### Diff & Patch with Client
2420

2521
TerminusDB represents objects such as documents and schemas in JSON-LD format. Use JSON Diff and Patch to easily compare these objects to obtain differences between them.

guides/how-to-guides/query-data/find-object-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
description: Find an object state at a given time in Python.
2+
description: Find an object state at a given time using the Python client.
33
---
44

55
# Find an Object State

0 commit comments

Comments
 (0)