query-d0f80f8e67480b03e74f96ae0091b0d9

rq turtle/ttl

Treccani (con etichette, ordinato)ORDER BY DESC ORDER BY ASC ORDER BY

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?treccani
WHERE {
  ?item wdt:P3365 ?treccani .
  SERVICE wikibase:label { bd:serviceParam wikibase:language "it,en" . }
}
ORDER BY DESC(?treccani)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?treccani"):::projected c3(["bd:serviceParam"]):::iri c5(["it,en"]):::literal v2 --"wdt:P3365"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end