Help:SPARQL query examples: Difference between revisions
Jump to navigation
Jump to search
(Pagina creata) |
mNo edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
<languages /><translate>Questa pagina conterrà esempi dettagliati per usare lo endpoint | <languages /><translate><!--T:1--> | ||
Questa pagina conterrà esempi dettagliati per usare lo endpoint SPARQL. | |||
<!--T:2--> | |||
Si tratta di una caratteristica '''sperimentale'''. | Si tratta di una caratteristica '''sperimentale'''. | ||
== Dove si | <!--T:3--> | ||
== Dove si trova == | |||
https://wdqs.wikitrek.org | https://wdqs.wikitrek.org | ||
<!--T:4--> | |||
== Cosa serve == | == Cosa serve == | ||
https://en.wikipedia.org/wiki/SPARQL | https://en.wikipedia.org/wiki/SPARQL | ||
<!--T:5--> | |||
== Esempi da Wikidata == | == Esempi da Wikidata == | ||
https://www.wikidata.org/wiki/Wikidata:SPARQL_tutorial | https://www.wikidata.org/wiki/Wikidata:SPARQL_tutorial | ||
<!--T:6--> | |||
== Esempi == | == Esempi == | ||
{{Help:SPARQL_query_examples/queries}} | |||
</translate> | </translate> |
Latest revision as of 16:31, 30 December 2024
Questa pagina conterrà esempi dettagliati per usare lo endpoint SPARQL.
Si tratta di una caratteristica sperimentale.
Dove si trova
Cosa serve
https://en.wikipedia.org/wiki/SPARQL
Esempi da Wikidata
https://www.wikidata.org/wiki/Wikidata:SPARQL_tutorial
Esempi
Queries with cats
Cats
SELECT ?cat ?catLabel WHERE {
?cat prefix:P1 prefix:Q2
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
Queries with dogs
Dogs
SELECT ?dog ?dogLabel WHERE {
?dog prefix:P1 prefix:Q3
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],mul,en". }
}
Episodi di Lower Decks
Elenco di episodi di Lower Decks
PREFIX wd: <https://data.wikitrek.org/entity/>
PREFIX wdt: <https://data.wikitrek.org/prop/direct/>
SELECT ?episode ?episodeLabel ?publication ?production WHERE {
?episode wdt:P14 wd:Q10317;
wdt:P101 ?publication;
wdt:P1 ?production
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY ASC (?production)
Episodi di Prodigy
Elenco di episodi di Prodigy
PREFIX wd: <https://data.wikitrek.org/entity/>
PREFIX wdt: <https://data.wikitrek.org/prop/direct/>
SELECT ?episode ?episodeLabel ?publication ?production WHERE {
?episode wdt:P14 wd:Q10692;
wdt:P101 ?publication;
wdt:P1 ?production
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
ORDER BY ASC (?production)
Planets
A list of planets.
SELECT ?planet WHERE { ?planet wdt:P31 wd:Q634. }
Starships
Starships in the galaxy.
SELECT ?starship WHERE { ?starship wdt:P31 wd:Q170383. }