query-8f687c5d422a1bc088e9f88ff0282c92

rq turtle/ttl

Values of uses (P2283) in scholarly articles Values of uses (P2283) in scholarly articles Valeurs de uses (P2283) dans des articles universitaires Values of uses (P2283) in scholarly articles Values of uses (P2283) in scholarly articles Waarden van uses (P2283) in wetenschappelijke artikelen Värden för uses (P2283) i vetenskapliga artiklar Values of uses (P2283) in scholarly articles Values of uses (P2283) in scholarly articles 学术文章中最常见的uses (P2283)

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#>
# Values of "uses" used in scholarly articles
# Demonstrates how to turn off the optimizer and start with the lowest number of edges first.
#defaultView:BubbleChart
SELECT ?uses ?usesLabel (count(?item) as ?c)
WHERE 
{

  ?item wdt:P2283 ?uses. # ~20,000 edges
  ?item wdt:P31 wd:Q13442814. # ~37M edges
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
group by ?uses ?usesLabel
order by desc(?c)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v4("?c") v2("?item"):::projected v3("?uses"):::projected c3(["wd:Q13442814"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P2283"--> v3 v2 --"wdt:P31"--> c3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end bind1[/"count(?item)"/] v2 --o bind1 bind1 --as--o v4