query-b807bc97450baa63979c204165c74a46

rq turtle/ttl

title:Persons born in Riga with LNB ID and with a birthdate referenced from LNB ID 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 . ?ref pr:P1368 ?lnb . ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". } } ORDER BY ?itemLabel ?birthdate

Use at

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 pr: <http://www.wikidata.org/prop/reference/>
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 birthdate referenced from LNB ID
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 .
  ?ref pr:P1368 ?lnb .
  ?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") c13(["lv,mul,en"]):::literal c11(["bd:serviceParam"]):::iri c2(["wd:Q5"]):::iri c4(["wd:Q1773"]):::iri v3 --"p:direct/P31"--> c2 v3 --"p:direct/P19"--> c4 v3 --"p:P569"--> v4 v4 --"p:statement/P569"--> v2 v4 --"prov:wasDerivedFrom"--> v5 v5 --"p:reference/P1368"--> v6 v3 --"p:direct/P1368"--> v6 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c11 --"wikibase:language"--> c13 end