@@ -20,31 +20,31 @@ Inside the Julia REPL, type ] to enter the Pkg REPL mode then run
20
20
21
21
## Quickstart
22
22
23
- First make sure, the TypeDB server is running.
23
+ First make sure the TypeDB server is running.
24
24
See [ Start the TypeDB Server] ( https://docs.vaticle.com/docs/running-typedb/install-and-run#start-the-typedb-server ) section.
25
25
26
- In the Julia REPL or in your source code run :
26
+ In the Julia REPL or in your source code:
27
27
28
28
` using TypeDBClient `
29
29
30
30
You have two choices:
31
31
32
- * If you are only interested in working interactivly , you can use the more simplified API. An example for this is:
32
+ * If you are only interested in working interactively , you can use the more simplified API. An example for this is:
33
33
``` julia
34
34
using TypeDBClient: dbconnect, open, read, write, match, insert, commit, create_database
35
35
36
36
# Connecting the client to TypeDB
37
37
dbconnect (" 127.0.0.1" ) do client
38
38
39
- # Creation of a database
39
+ # Create a database
40
40
create_database (client, " my-typedb" )
41
- # Opening the session
41
+ # Opening a session
42
42
open (client, " my-typedb" ) do session
43
43
# Open a write transaction
44
44
write (session) do transaction
45
- # Make a insert with a TypeQL string
45
+ # Insert a record using TypeQL
46
46
insert (transaction, raw " insert $_ isa person;" )
47
- # Committing the transaction.
47
+ # Commit the transaction
48
48
commit (transaction)
49
49
end
50
50
# Open a read session
@@ -63,28 +63,32 @@ For working with data using TypeQL, please refer to the syntax on [TypeQL Docume
63
63
``` julia
64
64
using TypeDBClient
65
65
66
- # Only for convencience reasons, you can write the full name if you want
66
+ # Only for convenience reasons, you can write the full name if you want
67
67
g = TypeDBClient
68
68
69
69
# Create a client
70
70
client = g. CoreClient (" 127.0.0.1" ,1729 )
71
71
72
- # Create a database called typedb if the database isn 't already created by you previously.
72
+ # Create a database called typedb if the database wasn 't already created by you previously.
73
73
g. create_database (client, " typedb" )
74
74
75
- #= Open a session to write in the schema section of the database.
76
- Be careful if you work with a schema session. No more sessions are allowed
77
- until you close this session. Closing a session is mandatory. Don't forget this
78
- at the end of your work.=#
75
+ #=
76
+ Open a session to write in the schema section of the database.
77
+ Be careful if you work with a schema session. No more sessions are allowed
78
+ until you close this session. Closing a session is mandatory. Don't forget this
79
+ at the end of your work.
80
+ =#
79
81
session = g. CoreSession (client, " typedb" , g. Proto. Session_Type. SCHEMA, request_timeout= Inf )
80
82
81
83
# Open a write transaction
82
84
transaction = g. transaction (session, g. Proto. Transaction_Type. WRITE)
83
85
84
- #= Make a query in the database
85
- The result of this query will be a vector of ConceptMap.
86
- From there you can access the data as you want.=#
87
- results = g. match (transaction, raw """ match $x sub thing;""" )
86
+ #=
87
+ Make a query in the database
88
+ The result of this query will be a vector of ConceptMap.
89
+ From there you can access the data as you want.
90
+ =#
91
+ results = g. match (transaction, " match \$ x sub thing;" )
88
92
89
93
# If you want to work further in the session, go ahead, else close the session.
90
94
close (session)
@@ -102,36 +106,39 @@ Modules = [TypeDBClient]
102
106
* delete
103
107
104
108
There are some delete functions:
109
+
105
110
* database
106
111
107
- [ ` delete_database(client::CoreClient, database_name::String ) ` ] ( @ref )
112
+ [ ` delete_database(client::AbstractCoreClient, name::AbstractString ) ` ] ( @ref )
108
113
109
114
* type
110
115
111
- [ ` delete(r::RemoteConcept{C,T}) where {C <:AbstractThingType, T <: AbstractCoreTransaction} ` ] ( @ref )
116
+ [ ` unset_has(transaction::AbstractCoreTransaction, thing::AbstractThing, attribute::Attribute) ` ] ( @ref )
112
117
113
118
Any type can be deleted with this function. Be aware that only types which have no instances
114
119
in the database can be deleted.
115
120
116
121
117
122
* get_has
118
123
119
- [ ` get_owns(r::RemoteConcept{C,T}, value_type::Optional{EnumType}=nothing,keys_only::Bool=false) where {C <: AbstractThingType,T <: AbstractCoreTransaction} ` ] ( @ref )
124
+ [ `get_has(transaction::AbstractCoreTransaction,
125
+ thing::AbstractThing,
126
+ attribute_type::Optional{AttributeType} = nothing,
127
+ attribute_types::Optional{Vector{<: AbstractAttributeType }} = nothing,
128
+ keys_only = false)`] ( @ref )
120
129
121
130
122
131
* get_instances
123
132
124
- [ `get_instances(r::RemoteConcept{C,T}) where
125
- {C <: AbstractThingType,T <: AbstractCoreTransaction}`] ( @ref )
133
+ [ ` get_instances(r::RemoteConcept{<:AbstractThingType}) ` ] ( @ref )
126
134
127
135
* get_owns
128
136
129
137
[ `get_owns(
130
- r::RemoteConcept{C,T },
138
+ r::RemoteConcept{< : AbstractThingType },
131
139
value_type::Optional{EnumType}=nothing,
132
140
keys_only::Bool=false
133
- ) where {C <: AbstractThingType,T <: AbstractCoreTransaction}`] ( @ref )
134
-
141
+ )`] ( @ref )
135
142
136
143
* get_owners
137
144
@@ -143,25 +150,22 @@ Modules = [TypeDBClient]
143
150
144
151
* AttributeType
145
152
146
- [ `get_owners(r::RemoteConcept{C,T}, only_key = false) where {
147
- C <: AbstractAttributeType, T <: AbstractCoreTransaction}`] ( @ref )
153
+ [ ` get_owners(r::RemoteConcept{<: AbstractAttributeType}, only_key = false) ` ] ( @ref )
148
154
149
155
150
156
* get_plays
151
157
152
- [ `get_plays(r::RemoteConcept{C,T}) where
153
- {C <: AbstractThingType,T <: AbstractCoreTransaction}`] ( @ref )
158
+ [ ` get_plays(r::RemoteConcept{<: AbstractThingType}) ` ] ( @ref )
154
159
155
160
156
- * get_regex
157
161
158
- [ `get_regex(r::RemoteConcept{C,T}) where {
159
- C <: AbstractAttributeType, T <: AbstractCoreTransaction}`] ( @ref )
162
+ * get_regex
160
163
164
+ [ ` get_regex(r::RemoteConcept{<:AbstractAttributeType}) ` ] ( @ref )
161
165
162
166
* get_rule
163
167
164
- [ ` get_rule(log_mgr::AbstractLogicManager, label::String ) ` ] ( @ref )
168
+ [ ` get_rule(log_mgr::AbstractLogicManager, label::AbstractString ) ` ] ( @ref )
165
169
166
170
167
171
* get_rules
@@ -171,65 +175,68 @@ Modules = [TypeDBClient]
171
175
172
176
* get_subtypes
173
177
174
- [ `get_subtypes(r::RemoteConcept{C,T}) where
175
- {C <: AbstractType,T <: AbstractCoreTransaction}` ] ( @ref )
178
+ [ ` get_subtypes(r::RemoteConcept{<:AbstractType}) ` ] ( @ref )
179
+
176
180
177
181
* get_supertype
178
182
179
- [ `get_supertype(
180
- r::RemoteConcept{C,T}) where {C <: AbstractType,T <: AbstractCoreTransaction}` ] ( @ref )
183
+ [ ` get_supertype(r::RemoteConcept{<:AbstractType}) ` ] ( @ref )
184
+
181
185
182
186
* get_supertypes
183
187
184
- [ `get_supertypes(r::RemoteConcept{C,T}) where
185
- {C <: AbstractType,T <: AbstractCoreTransaction}` ] ( @ref )
188
+ [ ` get_supertypes(r::RemoteConcept{<:AbstractType}) ` ] ( @ref )
189
+
186
190
187
191
* set_abstract
188
192
189
- [ `set_abstract(r::RemoteConcept{C,T}) where
190
- {C <: AbstractThingType,T <: AbstractCoreTransaction}`] ( @ref )
193
+ [ ` set_abstract(r::RemoteConcept{<:AbstractThingType}) ` ] ( @ref )
191
194
192
195
* set_has
193
196
194
197
[ ` set_has(transaction::AbstractCoreTransaction, thing::AbstractThing, attribute::Attribute) ` ] ( @ref )
195
198
199
+
196
200
* set_label
197
201
198
- [ `set_label(r::RemoteConcept{C,T}, new_label_name::String) where
199
- {C <: AbstractType,T <: AbstractCoreTransaction} `] ( @ref )
202
+ [ `set_label(r::RemoteConcept{< : AbstractType },
203
+ new_label_name::AbstractString) `] ( @ref )
200
204
201
205
* set_owns
202
206
203
207
[ `set_owns(
204
- r::RemoteConcept{C,T},
205
- attribute_type::AbstractType,
206
- is_key::Bool=false,
207
- overriden_type::Optional{AbstractType}=nothing
208
- ) where {C <: AbstractType,T <: AbstractCoreTransaction}`] ( @ref )
208
+ r::RemoteConcept{<: AbstractType },
209
+ attribute_type::AbstractType,
210
+ is_key::Bool=false,
211
+ overriden_type::Optional{AbstractType}=nothing
212
+ )`] ( @ref )
213
+
209
214
210
215
* set_plays
211
216
212
- [ `function set_plays(
213
- r::RemoteConcept{C,T },
217
+ [ `set_plays(
218
+ r::RemoteConcept{< : AbstractThingType },
214
219
role_type::AbstractRoleType,
215
220
overridden_role_type::Optional{AbstractRoleType}=nothing
216
- ) where {C <: AbstractThingType,T <: AbstractCoreTransaction}`] ( @ref )
221
+ )`] ( @ref )
222
+
217
223
218
224
* set_regex
219
225
220
- [ ``set_regex(r::RemoteConcept{C,T}, regex::Optional{AbstractString}) where {
221
- C <: AbstractAttributeType, T <: AbstractCoreTransaction}] ( @ref )
226
+ [ `set_regex(r::RemoteConcept{<: AbstractAttributeType },
227
+ regex::Optional{AbstractString})`] ( @ref )
228
+
222
229
223
230
* set_supertype
224
231
225
- [ `set_supertype(r::RemoteConcept{C,T },
226
- super_type::AbstractThingType) where
227
- {C <: AbstractThingType,T <: AbstractCoreTransaction}` ] ( @ref )
232
+ [ `set_supertype(r::RemoteConcept{<: AbstractThingType,<: AbstractCoreTransaction },
233
+ super_type::AbstractThingType)` ] ( @ref )
234
+
228
235
229
236
* unset_abstract
230
237
231
- [ `unset_abstract(r::RemoteConcept{C,T}) where
232
- {C <: AbstractThingType,T <: AbstractCoreTransaction}` ] ( @ref )
238
+ [ ` unset_abstract(r::RemoteConcept{<:AbstractThingType}) ` ] ( @ref )
239
+
233
240
234
241
* unset_has
235
242
0 commit comments