query-1c149dd639145638d919eff8dd40b89a
Quelles sont les Ada (Q346047) avec le plus grand nombre d'articles sur Wikipédia liens de sites ?
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel (COUNT(?sitelink) AS ?count) WHERE {
?item wdt:P735 wd:Q346047.
?sitelink schema:about ?item.
FILTER (SUBSTR(str(?sitelink), 11, 15) = ".wikipedia.org/") .
SERVICE wikibase:label { bd:serviceParam wikibase:language "fr". }
}
GROUP BY ?item ?itemLabel
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
c8(["bd:serviceParam"]):::iri
c5(["wd:Q346047"]):::iri
c10(["fr"]):::literal
f0[["substring(str(?sitelink),'11^^xsd:integer','15^^xsd:integer') = '.wikipedia.org/'"]]
f0 --> v2
v3 --"wdt:P735"--> c5
v2 --"schema:about"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end
bind2[/"count(?sitelink)"/]
v2 --o bind2
bind2 --as--o v4