Skip to content

Commit 1f64c54

Browse files
committed
Updated pages
1 parent 81d33ba commit 1f64c54

File tree

3 files changed

+27
-10
lines changed

3 files changed

+27
-10
lines changed

src/app/docs/datalog-explanation/page.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,18 @@ triple("v:Intermediate", "v:Predicate", "v:Object")
6161

6262
And here we refer to a specific starting node and search for every two-hop path starting from _this_ object.
6363

64-
### Further Reading
64+
## Further Reading
6565

66-
[**Documents in a knowledge graph and how to use them**](/docs/documents-explanation/).
66+
Read more:
67+
* the [Unification of Variables](/docs/unification-of-variables-in-datalog/)
68+
* how to [Query with WOQL](/docs/how-to-query-with-woql/).
69+
* [WOQL Getting Started](/docs/woql-getting-started/) guide for more examples and putting it all together!
70+
* [JavaScript](/docs/javascript/) and [Python](/docs/python/) WOQL Reference guides
71+
72+
### How-to guides
73+
74+
See the [How-to Guides](/docs/use-the-clients/) for further examples of using WOQL in the clients.
75+
76+
### Documents
77+
78+
[Documents](/docs/documents-explanation/) in a knowledge graph and how to use them.

src/app/docs/unification-of-variables-in-datalog/page.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,10 @@ Remember that unification evaluates all possible solutions. When working with la
178178
The engine will try to optimize certain aspects of the query through the built-in optimizations of Prolog, but some optimizations may be required to help the execution plan generator of the database.
179179

180180
Understanding unification empowers you to write more effective WOQL queries that leverage TerminusDB’s graph capabilities. By thinking in terms of variable binding and pattern matching, you can construct queries that efficiently discover the relationships and data patterns hidden within your knowledge graphs.
181+
182+
## Further Reading
183+
184+
Read more:
185+
* the [Datalog Engine Explanation](/docs/datalog-explanation)
186+
* the [WOQL Explanation](/docs/woql-explanation/)
187+
* how to [Query with WOQL](/docs/how-to-query-with-woql/).

src/app/docs/woql-explanation/page.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -232,17 +232,15 @@ WOQL goes a step beyond supporting prefixes by automatically applying prefixes w
232232

233233
## Further Reading
234234

235-
### WOQL Getting Started
236-
237-
Read the [WOQL Getting Started](/docs/woql-getting-started/) guide for more examples and putting it all together!
238-
239-
### WOQL Reference
240-
241-
[JavaScript](/docs/javascript/) and [Python](/docs/python/) WOQL Reference guides
235+
Read more:
236+
* the [Unification of Variables](/docs/unification-of-variables-in-datalog/)
237+
* how to [Query with WOQL](/docs/how-to-query-with-woql/).
238+
* [WOQL Getting Started](/docs/woql-getting-started/) guide for more examples and putting it all together!
239+
* [JavaScript](/docs/javascript/) and [Python](/docs/python/) WOQL Reference guides
242240

243241
### How-to guides
244242

245-
See the [How-to Guides](/docs/use-the-clients/) for further examples of using WOQL.
243+
See the [How-to Guides](/docs/use-the-clients/) for further examples of using WOQL in the clients.
246244

247245
### Documents
248246

0 commit comments

Comments
 (0)