query-a53650a96eebc97208ef46e3abf83b06

rq turtle/ttl

Propertiesmaintained by WikiProject (P6104)published in (P1433)part of the series (P179)short name (P1813)main subject (P921)

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#>
#defaultView:Table
SELECT ?count ?short_name ?venue ?venueLabel ?topic ?topicLabel
WHERE {
   {
  SELECT (count(?work) as ?count) ?venue (SAMPLE(?short_name_) AS ?short_name) WHERE {
    ?work wdt:P6104 wd:Q56241615 .
    ?work wdt:P1433/wdt:P179* ?venue .
    OPTIONAL { ?venue wdt:P1813 ?short_name_ . }
  }
  GROUP BY ?venue
}  OPTIONAL  { ?venue wdt:P921 ?topic }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en,da,de,es,fr,jp,nl,no,ru,sv,zh" . } 
}
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v5("?count"):::projected v5("?short_name"):::projected v4("?short_name_") v6("?topic"):::projected v3("?venue"):::projected v2("?work") a1((" ")) c10(["en,da,de,es,fr,jp,nl,no,ru,sv,zh"]):::literal c8(["bd:serviceParam"]):::iri c2(["wd:Q56241615"]):::iri v2 --"wdt:P6104"--> c2 v2 --"wdt:P1433"--> a1 a1 --"wdt:P179"--> v3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P1813".-> v4 end bind2[/"count(?work)"/] v2 --o bind2 bind2 --as--o v5 bind3[/"sample(?short_name_)"/] v4 --o bind3 bind3 --as--o v5 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v3 -."wdt:P921".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end