Skip to content

Commit f9ec7b3

Browse files
committed
SEO for datalog and unification
1 parent dda7b3b commit f9ec7b3

File tree

5 files changed

+35
-29
lines changed

5 files changed

+35
-29
lines changed

src/app/docs/how-to-query-with-woql/page.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: How to Query with WOQL
33
nextjs:
44
metadata:
55
title: How to Query with WOQL
6+
keywords: woql query datalog
67
description: Bite sized how to guides to query TerminusDB using WOQL
78
openGraph:
89
images: https://assets.terminusdb.com/docs/technical-documentation-terminuscms-og.png

src/app/docs/python-woql-customer-data-processing-example/page.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ nextjs:
44
metadata:
55
title: Python WOQL Customer Data Processing Example
66
description: A guide to show how to perform basic document queries using the Python Client for customer management.
7+
keywords: python datalog
78
openGraph:
89
images: https://assets.terminusdb.com/docs/technical-documentation-terminuscms-og.png
910
alternates:

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

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: TerminusDB Web Object Query Language (WOQL) Basics
33
nextjs:
44
metadata:
55
title: TerminusDB Web Object Query Language (WOQL) Basics
6+
keywords: javascript datalog
67
description: Learn the TerminusDB WOQL query basics for TerminusDB
78
openGraph:
89
images: https://assets.terminusdb.com/docs/woql-basics.png
@@ -18,7 +19,7 @@ media:
1819

1920
> To use this HowTo, first [clone the Star Wars demo](/docs/clone-a-demo-terminuscms-project/) into your team on TerminusDB. You will then have full access to the data needed for this tutorial.
2021
21-
## Writing a WOQL Query
22+
## Writing a WOQL Javascript Datalog Query
2223

2324
![WOQL query playground in the TerminusDB dashboard](https://assets.terminusdb.com/docs/how-to-query-woql.png)
2425

@@ -52,41 +53,43 @@ limit(5)
5253

5354
This query results in the following:
5455

55-
Name
56+
{% table %}
5657

57-
Eyes
58+
- Name
59+
- Eyes
60+
- Person
5861

59-
Person
60-
61-
Luke Skywalker
62-
63-
blue
64-
65-
People/1
66-
67-
Obi-Wan Kenobi
68-
69-
blue-gray
62+
---
7063

71-
People/10
64+
- Luke Skywalker
65+
- blue
66+
- People/1
7267

73-
Anakin Skywalker
68+
---
7469

75-
blue
70+
- Obi-Wan Kenobi
71+
- blue-gray
72+
- People/10
7673

77-
People/11
74+
---
7875

79-
Wilhuff Tarkin
76+
- Anakin Skywalker
77+
- blue
78+
- People/11
8079

81-
blue
80+
---
8281

83-
People/12
82+
- Wilhuff Tarkin
83+
- blue
84+
- People/12
8485

85-
Chewbacca
86+
---
8687

87-
blue
88+
- Chewbacca
89+
- blue
90+
- People/13
8891

89-
People/13
92+
{% /table %}
9093

9194
## and
9295

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: WOQL Explanation
2+
title: "What is datalog? A WOQL Explanation"
33
nextjs:
44
metadata:
5-
title: WOQL Explanation
6-
description: A brief explanation of the TerminusDB Web Object Query Langauge (WOQL) which with datalog, composable logic and unification of variables
7-
keywords: TerminusDB, WOQL, datalog, composable logic, unification of variables
5+
title: What is datalog? A WOQL Explanation
6+
description: A brief explanation of the TerminusDB Web Object Query Langauge (WOQL), a datalog with composable logic and unification of variables
7+
keywords: datalog, meaning, unification, composable logic, variables
88
openGraph:
99
images: https://assets.terminusdb.com/docs/technical-documentation-terminuscms-og.png
1010
alternates:
1111
canonical: https://terminusdb.org/docs/woql-explanation/
1212
media: []
1313
---
1414

15-
This page explains various topics regarding the WOQL datalog query language.
15+
This page explains various topics regarding the WOQL datalog query language with built in unification like in Prolog.
1616

1717
## WOQL fluent vs. functional style
1818

src/app/docs/woql-query-with-python-client/page.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ nextjs:
44
metadata:
55
title: Run a WOQL Query with the Python Client
66
description: This how-to guide provides an example of the WOQL query language using the Python client
7+
keywords: woql python datalog client
78
openGraph:
89
images: https://assets.terminusdb.com/docs/python-client-use-woql-query.png
910
alternates:

0 commit comments

Comments
 (0)