query-f8f99f22708046e5554847ffce135019
Things discovered by people born in Slovenia and Slovenian citiziens SELECT DISTINCT ?item ?itemLabel ?discovererLabel ?placeLabel WHERE { { ?item wdt:P61 ?discoverer . ?discoverer wdt:P19 ?place . ?place wdt:P17 wd:Q215 . } UNION { ?item wdt:P61 ?discoverer . ?discoverer wdt:P27 wd:Q215 . } SERVICE wikibase:label { bd:serviceParam wikibase:language "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#>
# Things discovered by people born in Slovenia and Slovenian citiziens
SELECT DISTINCT ?item ?itemLabel ?discovererLabel ?placeLabel
WHERE
{
{
?item wdt:P61 ?discoverer .
?discoverer wdt:P19 ?place .
?place wdt:P17 wd:Q215 .
}
UNION
{
?item wdt:P61 ?discoverer .
?discoverer wdt:P27 wd:Q215 .
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "en"
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?discoverer")
v1("?item"):::projected
v3("?place")
c4(["wd:Q215"]):::iri
c7(["bd:serviceParam"]):::iri
c9(["en"]):::literal
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P61"--> v2
v2 --"wdt:P27"--> c4
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P61"--> v2
v2 --"wdt:P19"--> v3
v3 --"wdt:P17"--> c4
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end