query-f7c8ba54007b0046f5d30974ff7bd259
title:Persons born in Riga with LNB ID and with a referenced birthdate SELECT DISTINCT ?item ?itemLabel ?lnb ?birthdate wHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P19 wd:Q1773 . ?item p:P569 ?statement . ?statement ps:P569 ?birthdate ; prov:wasDerivedFrom ?ref . ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". } } ORDER BY ?itemLabel ?birthdate
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 ps: <http://www.wikidata.org/prop/statement/>
PREFIX prov: <http://www.w3.org/ns/prov#>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:Persons born in Riga with LNB ID and with a referenced birthdate
SELECT DISTINCT ?item ?itemLabel ?lnb ?birthdate
wHERE {
?item wdt:P31 wd:Q5 .
?item wdt:P19 wd:Q1773 .
?item p:P569 ?statement .
?statement ps:P569 ?birthdate ; prov:wasDerivedFrom ?ref .
?item wdt:P1368 ?lnb .
SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". }
}
ORDER BY ?itemLabel ?birthdate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?birthdate"):::projected
v3("?item"):::projected
v1("?itemLabel"):::projected
v6("?lnb"):::projected
v5("?ref")
v4("?statement")
c10(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c4(["wd:Q1773"]):::iri
c12(["lv,mul,en"]):::literal
v3 --"p:direct/P31"--> c2
v3 --"p:direct/P19"--> c4
v3 --"p:P569"--> v4
v4 --"p:statement/P569"--> v2
v4 --"prov:wasDerivedFrom"--> v5
v3 --"p:direct/P1368"--> v6
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c10 --"wikibase:language"--> c12
end