query-2feb2b5a8f5fec91d3ec392d84d9114a
title:Persons born in Liepāja with optional death date and with LNB ID SELECT ?item ?itemLabel ?deathdate ?lnb wHERE { ?item wdt:P31 wd:Q5 . ?item wdt:P19 wd:Q167668 . OPTIONAL { ?item wdt:P570 ?deathdate } . ?item wdt:P1368 ?lnb . SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,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#>
#title:Persons born in Liepāja with optional death date and with LNB ID
SELECT ?item ?itemLabel ?deathdate ?lnb
wHERE {
?item wdt:P31 wd:Q5 .
?item wdt:P19 wd:Q167668 .
OPTIONAL { ?item wdt:P570 ?deathdate } .
?item wdt:P1368 ?lnb .
SERVICE wikibase:label { bd:serviceParam wikibase:language "lv,mul,en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?deathdate"):::projected
v1("?item"):::projected
v3("?lnb"):::projected
c4(["wd:Q167668"]):::iri
c8(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c10(["lv,mul,en"]):::literal
v1 --"wdt:P31"--> c2
v1 --"wdt:P19"--> c4
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P570".-> v2
end
v1 --"wdt:P1368"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end