Skip to content

Commit d00af03

Browse files
committed
2 parents 7163592 + 1e3d865 commit d00af03

15 files changed

+849
-448
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---
66

77
[![Discord](https://img.shields.io/discord/689805612053168129?label=Discord&logo=Discord&style=plastic)](https://discord.gg/yTJKAma)
8-
[![Discourse](https://img.shields.io/discourse/topics?color=yellow&logo=Discourse&server=https%3A%2F%2Fdiscuss.terminusdb.com%2F&style=plastic)](https://discuss.terminusdb.com/)
8+
[![Reddit](https://img.shields.io/reddit/subreddit-subscribers/TerminusDB?style=social)](https://www.reddit.com/r/TerminusDB/)
99
[![Twitter](https://img.shields.io/twitter/follow/terminusdb?color=skyblue&label=Follow%20on%20Twitter&logo=twitter&style=flat)](https://twitter.com/TerminusDB)
1010

1111
[![npm version](https://img.shields.io/npm/v/@terminusdb/terminusdb-client?logo=npm)](https://www.npmjs.com/package/@terminusdb/terminusdb-client)

RELEASE_NOTES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
1+
2+
# TerminusDB Client v10.0.25
3+
4+
## Fixes 🛠
5+
6+
* Fix woqlPrinter
7+
28
# TerminusDB Client v10.0.24
39

410
## Fixes 🛠

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
---
66

77
[![Discord](https://img.shields.io/discord/689805612053168129?label=Discord&logo=Discord&style=plastic)](https://discord.gg/yTJKAma)
8-
[![Discourse](https://img.shields.io/discourse/topics?color=yellow&logo=Discourse&server=https%3A%2F%2Fdiscuss.terminusdb.com%2F&style=plastic)](https://discuss.terminusdb.com/)
8+
[![Reddit](https://img.shields.io/reddit/subreddit-subscribers/TerminusDB?style=social)](https://www.reddit.com/r/TerminusDB/)
99
[![Twitter](https://img.shields.io/twitter/follow/terminusdb?color=skyblue&label=Follow%20on%20Twitter&logo=twitter&style=flat)](https://twitter.com/TerminusDB)
1010

1111
[![npm version](https://img.shields.io/npm/v/@terminusdb/terminusdb-client?logo=npm)](https://www.npmjs.com/package/@terminusdb/terminusdb-client)

docs/api/typedef.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# TypeDef
33
##### TypeDef
4-
Type definations
4+
Type definitions
55

66

77
## DocParamsGet
@@ -146,7 +146,21 @@ the DELETE document interface query parameters
146146
| --- | --- | --- |
147147
| label | <code>string</code> | "Textual DB Name" |
148148
| [comment] | <code>string</code> | "Text description of DB" |
149-
| [public] | <code>boolean</code> | |
149+
| [public] | <code>boolean</code> | - |
150+
| [schema] | <code>boolean</code> | if set to true, a schema graph will be created |
151+
152+
153+
## DbDoc
154+
##### DbDoc: ` Object`
155+
**Properties**
156+
157+
| Name | Type | Description |
158+
| --- | --- | --- |
159+
| id | <code>string</code> | "Database ID" |
160+
| [label] | <code>string</code> | "Textual DB Name" |
161+
| [comment] | <code>string</code> | "Text description of DB" |
162+
| [organization] | <code>string</code> | "Organization to which the db belongs" |
163+
| [public] | <code>boolean</code> | - |
150164
| [schema] | <code>boolean</code> | if set to true, a schema graph will be created |
151165

152166

docs/api/woql.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -447,10 +447,9 @@ WOQL.delete_quad("Person", "rdf:type", "sys:Class", "schema")
447447
```
448448

449449
## add_triple
450-
##### WOQL.add\_triple(subject, predicate, object) ⇒ <code>object</code>
450+
##### WOQL.add\_triple(subject, predicate, object) ⇒ <code>WOQLQuery</code>
451451
Adds triples according to the the pattern [subject,predicate,object]
452452

453-
**Returns**: <code>object</code> - WOQLQuery
454453

455454
| Param | Type | Description |
456455
| --- | --- | --- |
@@ -460,10 +459,9 @@ Adds triples according to the the pattern [subject,predicate,object]
460459

461460

462461
## add_quad
463-
##### WOQL.add\_quad(subject, predicate, object, graphRef-) ⇒ <code>object</code>
462+
##### WOQL.add\_quad(subject, predicate, object, graphRef-) ⇒ <code>WOQLQuery</code>
464463
Adds quads according to the pattern [S,P,O,G]
465464

466-
**Returns**: <code>object</code> - WOQLQuery
467465

468466
| Param | Type | Description |
469467
| --- | --- | --- |
@@ -1521,8 +1519,7 @@ Update a pattern matching rule for the quad [S, P, O, G] (Subject, Predicate, Ob
15211519

15221520
## value
15231521
##### WOQL.value(subject, predicate, objValue) ⇒ <code>WOQLQuery</code>
1524-
Creates a pattern matching rule for a quad [Subject, Predicate, Object, Graph] or for a
1525-
triple [Subject, Predicate, Object]
1522+
Creates a pattern matching rule for a triple [Subject, Predicate, Object]
15261523
add extra information about the type of the value object
15271524

15281525
**Returns**: <code>WOQLQuery</code> - A WOQLQuery which contains the a quad or a triple Statement
@@ -1536,8 +1533,7 @@ add extra information about the type of the value object
15361533

15371534
## link
15381535
##### WOQL.link(subject, predicate, object) ⇒ <code>WOQLQuery</code>
1539-
Creates a pattern matching rule for a quad [Subject, Predicate, Object, Graph] or for a
1540-
triple [Subject, Predicate, Object]
1536+
Creates a pattern matching rule for a triple [Subject, Predicate, Object]
15411537

15421538
**Returns**: <code>WOQLQuery</code> - A WOQLQuery which contains the a quad or a triple Statement
15431539

0 commit comments

Comments
 (0)