query-cf6402d77ade3138c0b0b2b850b65a9f
Propertiesinstance of (P31)occupation (P106)subclass of (P279)country of citizenship (P27)image (P18)
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#>
SELECT ?human ?humanLabel ?image WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
?human wdt:P31 wd:Q5;
(wdt:P106/(wdt:P279*)) wd:Q901.
?human wdt:P27 wd:Q668.
OPTIONAL { ?human wdt:P18 ?image. }
}
LIMIT 100
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?human"):::projected
v2("?image"):::projected
a1((" "))
c2(["bd:serviceParam"]):::iri
c9(["wd:Q901"]):::iri
c11(["wd:Q668"]):::iri
c6(["wd:Q5"]):::iri
c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c2 --"wikibase:language"--> c4
end
v1 --"wdt:P31"--> c6
v1 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c9
v1 --"wdt:P27"--> c11
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v2
end