query-023ceab80261d36a1ab9df0958f813a7

rq turtle/ttl

Properties of performance (Q35140) and its subclasses Properties of performance (Q35140) and its subclasses Eigenschappen van performance (Q35140) 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:Q35140;
          ?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 c4(["wd:Q35140"]):::iri c6(["wikibase:Property"]):::iri c11(["en-GB,en,en"]):::literal 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