query-02caf3f8efe23cd37f4f533ee54b0804
TODO
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
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
WHERE {
?person wdt:P31 wd:Q5.
?person p:P27 [a wdno:P27].
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
a1((" "))
c7(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c9(["en"]):::literal
c4(["p:novalue/P27"]):::iri
v1 --"p:direct/P31"--> c2
a1 --"a"--> c4
v1 --"p:P27"--> a1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c7 --"wikibase:language"--> c9
end