query-c09e65850e48fc997c24cff0acf38e9c
title:Persons born in Liepāja with optional death date, without "languages spoken or written" 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 } . MINUS { ?item wdt:P1412 ?languages } . ?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, without "languages spoken or written" 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 } .
MINUS { ?item wdt:P1412 ?languages } .
?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("?languages")
v4("?lnb"):::projected
c4(["wd:Q167668"]):::iri
c9(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c11(["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
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P1412"--> v3
end
v1 --"wdt:P1368"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end