query-1a52c91b0cef5a0be65ec3d342359776

rq turtle/ttl

Things discovered by people born in Bulgaria and Bulgarian citiziens SELECT DISTINCT ?item ?itemLabel ?discovererLabel ?placeLabel WHERE { { ?item wdt:P61 ?discoverer . ?discoverer wdt:P19 ?place . ?place wdt:P17 wd:Q219 . } UNION { ?item wdt:P61 ?discoverer . ?discoverer wdt:P27 wd:Q219 . } SERVICE wikibase:label { bd:serviceParam wikibase:language "en" } }

Use at

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 Bulgaria and Bulgarian citiziens
SELECT DISTINCT ?item ?itemLabel ?discovererLabel ?placeLabel
WHERE
{
    {
      ?item wdt:P61 ?discoverer .
      ?discoverer wdt:P19 ?place .
      ?place wdt:P17 wd:Q219 .
    }
    UNION
    {
      ?item wdt:P61 ?discoverer .
      ?discoverer wdt:P27 wd:Q219 .
    }
    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") c7(["bd:serviceParam"]):::iri c4(["wd:Q219"]):::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