query-c8bb2eeef7219dae8c6eb79b9bcd49ac
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdno: <http://www.wikidata.org/prop/novalue/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?person ?personLabel ?statement
WHERE {
VALUES ?person {wd:Q4115189}
?person p:P39 ?statement .
?statement a wdno:P155.
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;
v1("?person"):::projected
v2("?statement"):::projected
c5(["bd:serviceParam"]):::iri
c3(["p:novalue/P155"]):::iri
c7(["en"]):::literal
bind0[/VALUES ?person/]
bind0-->v1
bind00(["wd:Q4115189"])
bind00 --> bind0
v1 --"p:P39"--> v2
v2 --"a"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end