query-a97da8c6be18a92404282076c7d5551a
en:Persons born in a Hungarian settlement without citizenship
hu:magyarországi településen született személyek állampolgárság nélkül
SELECT ?item ?itemLabel ?citizen ?citizenLabel WHERE { ?item wdt:P31 wd:Q5. ?item wdt:P19 ?citizen. { ?citizen wdt:P31 wd:Q13218690 . } UNION { ?citizen wdt:P31 wd:Q2590631 . } MINUS { ?item wdt:P27 [] } SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],hu" } }
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#>
#en:Persons born in a Hungarian settlement without citizenship
#hu:magyarországi településen született személyek állampolgárság nélkül
SELECT ?item ?itemLabel ?citizen ?citizenLabel WHERE {
?item wdt:P31 wd:Q5.
?item wdt:P19 ?citizen.
{ ?citizen wdt:P31* wd:Q13218690 . } UNION { ?citizen wdt:P31* wd:Q2590631 . }
MINUS { ?item wdt:P27 [] }
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],hu" }
}
Query found at
- https://www.wikidata.org/wiki/User:Pallor/Lek%C3%A9rdez%C3%A9s
- https://www.wikidata.org/wiki/Wikidata:WikiProject_Hungary/Maintenance_Queries
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?citizen"):::projected
v1("?item"):::projected
a1((" "))
c8(["bd:serviceParam"]):::iri
c4(["wd:Q13218690"]):::iri
c10(["#91;AUTO_LANGUAGE#93;,hu"]):::literal
c2(["wd:Q5"]):::iri
c5(["wd:Q2590631"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P19"--> v2
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P31"--> c5
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v2 --"wdt:P31"--> c4
end
union0r <== or ==> union0l
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v1 --"wdt:P27"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c8 --"wikibase:language"--> c10
end