query-048cd057ca0a3071946b706c6b0a1ebb

rq turtle/ttl

Statement for list 19:28, 4 May 2021 (UTC)) talk (Eurohunter so I can list all buildings under one statement? I have asked about it but gave wrong example so I got missed answers. (Q1779466)list of tallest buildings What is the statement to make for example list of tallest buildings in As to the original question, try: 14:00, 5 May 2021 (UTC)) talk (SCIdude to get all items. Second, your question: why not make Wikipedia lists by bot from Wikidata list? No one makes and maintains Wikidata lists, because the items will have P31/P279 and you just query for them to get a list. Finally, one could have the idea e.g. to make a Wikipedia list by using a Wikidata query, the problem is that in most cases there will be much more Wikidata items than Wikipedia articles, so most of the links in the Wikipedia list will be red. However, it is possible to show only those with article. --queryNo. If you have a Wikipedia list article, the articles listed should each have a Wikidata item with the same P31 value. So use the 10:18, 5 May 2021 (UTC)) talk (Eurohunter: I think no but what do you mean exactly? If data here is for use by Wikipedia I can imagine it could be used for tables across all Wikipedia versions. SCIdude@ 09:15, 5 May 2021 (UTC)) talk (SCIdudeAre Wikipedia lists copied to Wikidata? --

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#>
SELECT ?item ?itemLabel (MAX(?height) as ?maxheight)
WHERE 
{
  ?item wdt:P31/wdt:P279* wd:Q18142.
  ?item wdt:P2048 ?height.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
GROUP BY ?item ?itemLabel
ORDER BY ?maxheight

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?height"):::projected v2("?item"):::projected v4("?maxheight") a1((" ")) c6(["bd:serviceParam"]):::iri c3(["wd:Q18142"]):::iri c8(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v2 --"wdt:P2048"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c6 --"wikibase:language"--> c8 end bind1[/"max(?height)"/] v3 --o bind1 bind1 --as--o v4