3

schema.orgオントロジーを使用しています。<http://schema.org/Event>返された各サブクラスの子の数でのサブクラスを返したいです。私のクエリは現在、1 つのサブクラスを返します。

PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#> 
SELECT ?uri (count(?children) as ?childrenCount) WHERE 
{
  ?uri rdfs:subClassOf <http://schema.org/Event>.
  ?children rdfs:subClassOf ?uri
} 
GROUP BY ?uri

のすべてのサブクラスが<http://schema.org/Event>、その子の数だけ必要です。

4

1 に答える 1