query-4ae946051fbc15830d7993132ed0bad6
USA journalists who are also poets SELECT ?item ?itemLabel ?fatherLabel ?dob WHERE { #Item Property Value ?item wdt:P31 wd:Q5 . # all the items with instance of value human ?item wdt:P27 wd:Q30 . # who are citizens of the USA ?item wdt:P106 wd:Q82955 . # and politicians ?item wdt:P22 ?father . # who have a father entry on Wikidata ?father wdt:P106 wd:Q82955 . # who are also politicians ?item wdt:P569 ?dob . # date of birth of child FILTER (YEAR(?dob) > 1950) . #Only allow date of births of children after 1950
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_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#>
#USA journalists who are also poets
SELECT ?item ?itemLabel ?fatherLabel ?dob
WHERE
{
#Item Property Value
?item wdt:P31 wd:Q5 . # all the items with instance of value human
?item wdt:P27 wd:Q30 . # who are citizens of the USA
?item wdt:P106 wd:Q82955 . # and politicians
?item wdt:P22 ?father . # who have a father entry on Wikidata
?father wdt:P106 wd:Q82955 . # who are also politicians
?item wdt:P569 ?dob . # date of birth of child
FILTER (YEAR(?dob) > 1950) . #Only allow date of births of children after 1950
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?dob"):::projected
v3("?father")
v2("?item"):::projected
c5(["wd:Q30"]):::iri
c7(["wd:Q82955"]):::iri
c11(["bd:serviceParam"]):::iri
c3(["wd:Q5"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
f0[["year-from-dateTime(?dob) > '1950^^xsd:integer'"]]
f0 --> v1
v2 --"wdt:P31"--> c3
v2 --"wdt:P27"--> c5
v2 --"wdt:P106"--> c7
v2 --"wdt:P22"--> v3
v3 --"wdt:P106"--> c7
v2 --"wdt:P569"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end