Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
credentials = Credentials("admin", "password")
#end::constants_credentials[]
#tag::constants_options[]
options = DriverOptions(is_tls_enabled=True, tls_root_ca_path=None)
options = DriverOptions(is_tls_enabled=False, tls_root_ca_path=None)
#end::constants_options[]
#end::constants[]
#end::import_and_constants[]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
DB_NAME = "my_database"
address = "localhost:1729"
credentials = Credentials("admin", "password")
options = DriverOptions(is_tls_enabled=True, tls_root_ca_path=None)
options = DriverOptions(is_tls_enabled=False, tls_root_ca_path=None)
#end::import_and_constants[]

#tag::driver_create[]
Expand Down
2 changes: 1 addition & 1 deletion core-concepts/modules/ROOT/pages/typedb/crud.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ This allows structuring the output of the query to map precisely to the structur

[,typeql]
----
#!test[read, documents]
#!test[read]
match
$p isa person;
fetch {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ Removes duplicate answers in the stream.

[,typeql]
----
#!test[read, count=3]
#!test[read, count=4]
match
{ $p isa person; } or { $p has name "John"; };
distinct; # Make sure that the person with name John is returned at most once.
Expand Down
Loading