Hi,
I have a database which consists of triples like and the uid is assign dynamically.
I added some more triples (mutation).
Is it possible to get all the subject and objects (nodes) along with uids using a query?
Update 1: I got all the nodes and uid.
Let say,
“aman” has a uid = 0x11
Now I want to add one more triple for uid - 0x11
I did
_:object <name@en> "Carom".
_:0x11 <likes_for> _:object
.
Every time I run a different uid is been created.
for uid in assigned.uids:
print('{} => {}'.format(uid, assigned.uids[uid]))
0x11 => 0xf9087
object => 0xf9088
0x11 => 0xf9089
object => 0xf9088
Thanks.