Skip to content

Commit 8ef9672

Browse files
committed
Update links
1 parent bceb89b commit 8ef9672

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/src/concepts/data-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ DataJoint comprises:
108108

109109
- a schema :ref:`definition <definitions>` language
110110
- a data [manipulation](../manipulation/index.md) language
111-
- a data [query](../query/query-objects.md) language
111+
- a data [query](../query/principles.md) language
112112
- a [diagramming](../design/diagrams.md) notation for visualizing relationships between
113113
modeled entities
114114

docs/src/manipulation/insert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ In such cases, data can be [fetched](../query/fetch.md) from the first table and
7474
inserted into another table, but this results in transfers back and forth between the
7575
database and the local system.
7676
Instead, data can be inserted from one table into another without transfers between the
77-
database and the local system using [queries](../query/query-objects.md).
77+
database and the local system using [queries](../query/principles.md).
7878

7979
In the example below, a new schema has been created in preparation for phase two of a
8080
project.

docs/src/manipulation/transactions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ interrupting the sequence of such operations halfway would leave the data in an
66
state.
77
While the sequence is in progress, other processes accessing the database will not see
88
the partial results until the transaction is complete.
9-
The sequence make include [data queries](../query/query-objects.md) and
9+
The sequence make include [data queries](../query/principles.md) and
1010
[manipulations](index.md).
1111

1212
In such cases, the sequence of operations may be enclosed in a transaction.

docs/src/query/operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Operators
22

3-
[Data queries](query-objects.md) have the form of expressions using operators to derive
3+
[Data queries](principles.md) have the form of expressions using operators to derive
44
the desired table.
55
The expressions themselves do not contain any data.
66
They represent the desired data symbolically.

0 commit comments

Comments
 (0)