query-bf25c5fd00fdfa424f9f389b12ab3331
Which publication is cited the most? Counting publications that cite other publications (expressed with p2860) SELECT ?publication ?publicationLabel (COUNT(?publication) AS ?count) WHERE { ?item wdt:P2860 ?publication . SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . ?publication rdfs:label ?publicationLabel } } GROUP BY ?publication ?publicationLabel ORDER BY DESC(?count)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#Which publication is cited the most? Counting publications that cite other publications (expressed with p2860)
SELECT ?publication ?publicationLabel (COUNT(?publication) AS ?count)
WHERE
{
?item wdt:P2860 ?publication .
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en" .
?publication rdfs:label ?publicationLabel
}
}
GROUP BY ?publication ?publicationLabel
ORDER BY DESC(?count)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v5("?count")
v2("?item")
v3("?publication"):::projected
v4("?publicationLabel"):::projected
c3(["bd:serviceParam"]):::iri
c5(["en"]):::literal
v2 --"wdt:P2860"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
v3 --"rdfs:label"--> v4
end
bind1[/"count(?publication)"/]
v3 --o bind1
bind1 --as--o v5