query-d0afe1b689c2a818e48c45ec180aec8c
4.2.1 Predicate-Object Lists
https://www.w3.org/TR/2013/REC-sparql11-query-20130321/#predObjLists
SELECT ?child ?childLabel WHERE { ?child wdt:P22 wd:Q1339; # Child has father Johann Sebastian Bach and wdt:P25 wd:Q57487. # has mother Maria Barbara Bach. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } }
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#>
# 4.2.1 Predicate-Object Lists
# https://www.w3.org/TR/2013/REC-sparql11-query-20130321/#predObjLists
SELECT ?child ?childLabel
WHERE
{
?child wdt:P22 wd:Q1339; # Child has father Johann Sebastian Bach and
wdt:P25 wd:Q57487. # has mother Maria Barbara Bach.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?child"):::projected
c2(["wd:Q1339"]):::iri
c6(["bd:serviceParam"]):::iri
c4(["wd:Q57487"]):::iri
c8(["en"]):::literal
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