query-d1ec463515fdb63b59c18fb252cc0201

rq turtle/ttl

Space Shuttle missions SELECT ?item ?itemLabel ?launchdate WHERE { ?item wdt:P31 wd:Q752783. # Instance of human spaceflight ?item wdt:P361 wd:Q1775296. # Part of the Space Shutlle program ?item wdt:P619 ?launchdate. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # l'etichetta verrĂ  preferibilmente nella tua lingua, e altrimenti in inglese } ORDER BY ?launchdate

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#>
# Space Shuttle missions
SELECT ?item ?itemLabel ?launchdate
WHERE 
{
  ?item wdt:P31 wd:Q752783.     # Instance of human spaceflight
  ?item wdt:P361 wd:Q1775296.   # Part of the Space Shutlle program
  ?item wdt:P619 ?launchdate.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } # l'etichetta verrĂ  preferibilmente nella tua lingua, e altrimenti in inglese
}
ORDER BY ?launchdate

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?item"):::projected v1("?launchdate"):::projected c4(["wd:Q1775296"]):::iri c7(["bd:serviceParam"]):::iri c2(["wd:Q752783"]):::iri c9(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P31"--> c2 v2 --"wdt:P361"--> c4 v2 --"wdt:P619"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end