query-4800d7ff050f6d49db4d259a062ac46a

rq turtle/ttl

Properties of series of performances (Q43100730) and its subclasses Properties of series of performances (Q43100730) and its subclasses Eigenschappen van series of performances (Q43100730) en zijn subklassen

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?property ?propertyLabel ?count WHERE {
   {
  SELECT ?property (COUNT(DISTINCT ?statement) AS ?count) WHERE {
    ?item wdt:P31/wdt:P279* wd:Q43100730;
          ?p ?statement.
    ?property a wikibase:Property;
              wikibase:claim ?p.
    FILTER(?property != wd:P31)
  }
  GROUP BY ?property
  ORDER BY DESC(?count)
  LIMIT 200
}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en-GB,en,en". }
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v6("?count"):::projected v3("?item") v4("?p") v2("?property"):::projected v5("?statement") a1((" ")) c9(["bd:serviceParam"]):::iri c6(["wikibase:Property"]):::iri c11(["en-GB,en,en"]):::literal c4(["wd:Q43100730"]):::iri f0[["?property != 'wd:P31'"]] f0 --> v2 v3 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c4 v3 -->v4--> v5 v2 --"a"--> c6 v2 --"wikibase:claim"--> v4 bind2[/"count(?statement)"/] v5 --o bind2 bind2 --as--o v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c9 --"wikibase:language"--> c11 end