query-41788893af459c4c6fd052cf8106ed2f
Padrões avançados de triplas )? Tente escrever essa busca com base na busca de cima. Q57487Então agora já vimos todos os filhos de Johann Sebastian Bach - mais precisamente: todos os itens com o pai Johann Sebastian Bach. Mas o Bach teve duas esposas, e então esses itens tem 2 mães diferent]es. E se quiremos identificar apenas os filhos de Johann Sebastian Bach com sua primeira mulher, Maria Barbara Bach ( Fez isso? Beleza, então vamos para a solução! O jeito mais simples de fazer isso é adicionar uma sugunda tripla com essa restrição.
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 ?criança ?criançaLabel
WHERE
{
?criança wdt:P22 wd:Q1339.
?criança wdt:P25 wd:Q57487.
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;
v1("?criança"):::projected
c2(["wd:Q1339"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["#91;AUTO_LANGUAGE#93;"]):::literal
c4(["wd:Q57487"]):::iri
v1 --"wdt:P22"--> c2
v1 --"wdt:P25"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end