Thank you for your kind reply.
The below code are that I used for import turtle file.
CALL n10s.graphconfig.init();
CREATE CONSTRAINT n10s_unique_uri ON (r:Resource) ASSERT r.uri IS UNIQUE
CALL n10s.onto.import.fetch("http://localhost:11001/project-23a8e4aa-62a1-4e39-8852-387b71c83156/FruitJuice.ttl","Turtle", {
classLabel : 'Category',
objectPropertyLabel: 'Rel',
dataTypePropertyLabel: 'Prop'
});
After executing these code, I could get the return the table that shows information about terminationStatus, triplesLoaded, triplesParsed, namespaces, extraInfo, callParams.
Among the return values, I want to get the triplesParsed, but I don't know how to get it.
For example, in the ontology there is triple (GrapeJuice - madeOf - Grape).
However, now there are only (Juice - SCO - GrapeJuice) , (Fruit - SCO - Grape).
### http://www.semanticweb.org/yujin/ontologies/2021/0/untitled-ontology-95#GrapeJuice
:GrapeJuice rdf:type owl:Class ;
rdfs:subClassOf :Juice ,
[ rdf:type owl:Restriction ;
owl:onProperty :madeOf ;
owl:someValuesFrom :Grape
] .
I need to search the information above.
Please give me your kind guidance.
Thanks,