Talk:Main Page: Difference between revisions
Jump to navigation
Jump to search
Provalo!
(template SPARQL) |
No edit summary |
||
Line 1: | Line 1: | ||
__FORCETOC__ | |||
== Prefissi per query sparql == | == Prefissi per query sparql == | ||
<pre> | <pre> |
Revision as of 17:53, 20 July 2023
Prefissi per query sparql
PREFIX wd: <https://openacolit.wikibase.cloud/entity/> PREFIX wdt: <https://openacolit.wikibase.cloud/prop/direct/>
Esempio di query: tutte le lingue definite in OA
PREFIX wd: <https://openacolit.wikibase.cloud/entity/>
PREFIX wdt: <https://openacolit.wikibase.cloud/prop/direct/>
SELECT ?q ?qLabel WHERE {
?q wdt:P1 wd:Q1051.
SERVICE wikibase:label { bd:serviceParam wikibase:language "it". }
}
ORDER BY (?qLabel)