我想在我的本体中添加动态信息。我成功添加了这样的东西
<myOntology:Diseases rdf:about="&myOntology;Cough">
<rdf:type rdf:resource="&myOntology;Diseases" />
</myOntology:Diseases>
和
INSERT DATA {
GRAPH <http://www.semanticweb.org/alexandrina/ontologies/2013/3/myOntology>
{
<http://www.semanticweb.org/alexandrina/ontologies/2013/3/myOntology#Cough>
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
<http://www.semanticweb.org/alexandrina/ontologies/2013/3/myOntology#Diseases>
}
}
但现在我想添加标签或评论属性。例如,要获得
<rdfs:comment xml:lang="en">Cough</rdfs:comment>
<rdfs:comment xml:lang="ro">Tusea</rdfs:comment>
我尝试了很多查询,但没有成功。这样的查询应该是什么?