query-0fa6ea16a6ef04625092d6de36833877
Cubesat missions SELECT ?item ?itemLabel ?countryLabel ?launchdate ?launchvehicleLabel ?sponsorLabel WHERE { ?item wdt:P31 wd:Q1142930. OPTIONAL {?item wdt:P619 ?launchdate} OPTIONAL {?item wdt:P17 ?country} OPTIONAL {?item wdt:P375 ?launchvehicle} OPTIONAL {?item wdt:P859 ?sponsor} SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } } ORDER BY DESC (?launchdate)
Use at
- https://query.wikidata.org/sparql
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#>
#Cubesat missions
SELECT ?item ?itemLabel ?countryLabel ?launchdate ?launchvehicleLabel ?sponsorLabel
WHERE
{
?item wdt:P31 wd:Q1142930.
OPTIONAL {?item wdt:P619 ?launchdate}
OPTIONAL {?item wdt:P17 ?country}
OPTIONAL {?item wdt:P375 ?launchvehicle}
OPTIONAL {?item wdt:P859 ?sponsor}
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
ORDER BY DESC (?launchdate)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?country")
v2("?item"):::projected
v1("?launchdate"):::projected
v4("?launchvehicle")
v5("?sponsor")
c8(["bd:serviceParam"]):::iri
c2(["wd:Q1142930"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v2 --"wdt:P31"--> c2
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P619".-> v1
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P17".-> v3
end
subgraph optional2["(optional)"]
style optional2 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P375".-> v4
end
subgraph optional3["(optional)"]
style optional3 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P859".-> v5
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end