query-79f4cb2b620387e8ba82e889b9adcde7

rq turtle/ttl

title:Topics with Featured Articles in more than one language SELECT ?item ?itemLabel (COUNT(?sitelink) AS ?count) WHERE { ?sitelink schema:about ?item; wikibase:badge wd:Q17437796 . SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" } } GROUP BY ?item ?itemLabel HAVING(?count > 1) ORDER BY DESC(?count)

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Topics with Featured Articles in more than one language
SELECT ?item ?itemLabel (COUNT(?sitelink) AS ?count) WHERE {
  ?sitelink schema:about ?item;
     wikibase:badge wd:Q17437796 .
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en" }
} GROUP BY ?item ?itemLabel
HAVING(?count > 1)
ORDER BY DESC(?count)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?count") v3("?item"):::projected v2("?sitelink"):::projected c6(["bd:serviceParam"]):::iri c8(["#91;AUTO_LANGUAGE#93;,mul,en"]):::literal c4(["wd:Q17437796"]):::iri f0[["?count > '1^^xsd:integer'"]] f0 --> v4 v2 --"schema:about"--> v3 v2 --"wikibase:badge"--> c4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind2[/"count(?sitelink)"/] v2 --o bind2 bind2 --as--o v4