query-97a316831631c7b1f99f009e2b132061

rq turtle/ttl

Propertiesmaintained by WikiProject (P6104)describes a project that uses (P4510)

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
  ?count
  ?use ?useLabel 
  ?useDescription
  ?example_work ?example_workLabel
WHERE {
   {
  SELECT
    (COUNT(?work) AS ?count)
    ?use
    (SAMPLE(?work) AS ?example_work)
  {
    ?work wdt:P6104 wd:Q56241615 ;
          wdt:P4510 ?use .
  }
  GROUP BY ?use
}  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count"):::projected v4("?example_work"):::projected v3("?use"):::projected v2("?work") c5(["bd:serviceParam"]):::iri c2(["wd:Q56241615"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P6104"--> c2 v2 --"wdt:P4510"--> v3 bind2[/"count(?work)"/] v2 --o bind2 bind2 --as--o v4 bind3[/"sample(?work)"/] v2 --o bind3 bind3 --as--o v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end