Fix neo4j loader (#141)

This commit is contained in:
cybermaggedon 2024-11-06 00:27:35 +00:00 committed by GitHub
parent 2660b28ab9
commit 9c6c6c9843
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -120,7 +120,7 @@ class Processor(Consumer):
self.create_node(t.s.value)
if v.o.is_uri:
if t.o.is_uri:
self.create_node(t.o.value)
self.relate_node(t.s.value, t.p.value, t.o.value)
else: