在 GraphDB 的可视化图中可视化超类类型

Visualizing superclass types in GraphDB's visual graph

我有下图:

:Bar rdf:type owl:Class .

:Foo rdf:type owl:Class ;
     rdfs:subClassOf :Bar .

:my_foo a :Foo .

当我在 GraphDB 的可视化图表中查看 :my_foo 的信息面板时,它只显示 class :Foo 的徽章,而不显示超级 class :Bar。有没有办法在这样的面板中获得完整的类型列表?

检索此信息面板的内容时,使用 sesame:directType 谓词。

Resource I is a direct type of T if:

  1. I is of type T and
  2. There is no class U (not equal to T) such that:
    a. U is a subclass of T, and
    b. I is of type U.

Source

graphdb-framework-graph-explore-8.2.0.jar 存档的 describeResource.sparql 文件中,将 sesame:directType 替换为 rdf:type