query-a72f3abc62625abcad52693600c000e9
TODO
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#>
SELECT ?astronauta ?astronautaLabel
WHERE
{
?astronauta wdt:P31 wd:Q5;
wdt:P106 wd:Q11631.
OPTIONAL {
?astronauta wdt:P450 ?missao.
?missao wdt:P31 wd:Q495307.
}
OPTIONAL {
?astronauta wdt:P450 wd:Q182252.
BIND(wd:Q182252 AS ?missao).
}
FILTER(BOUND(?missao)).
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?astronauta"):::projected
v3("?missao")
c7(["wd:Q182252"]):::iri
c9(["bd:serviceParam"]):::iri
c11(["#91;AUTO_LANGUAGE#93;"]):::literal
c2(["wd:Q5"]):::iri
c4(["wd:Q11631"]):::iri
c6(["wd:Q495307"]):::iri
f0[["bound(?missao)"]]
f0 --> v3
v2 --"wdt:P31"--> c2
v2 --"wdt:P106"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P450".-> v3
v3 --"wdt:P31"--> c6
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P450".-> c7
bind1[/"'wd:Q182252'"/]
bind1 --as--o v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end