query-3c76d8cea03b4740dae81dc96b03021a
Subclass of 'human' and also instance of 'profession' or 'ethnic group' SELECT ?item ?itemLabel WHERE { ?item wdt:P279 wd:Q5 ; wdt:P31 ?value .
VALUES ?value { wd:Q28640 wd:Q41710 }
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#>
# Subclass of 'human' and also instance of 'profession' or 'ethnic group'
SELECT ?item ?itemLabel
WHERE
{
?item wdt:P279 wd:Q5 ;
wdt:P31 ?value .
VALUES ?value { wd:Q28640 wd:Q41710 }
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("?item"):::projected
v3("?value")
c5(["bd:serviceParam"]):::iri
c2(["wd:Q5"]):::iri
c7(["en"]):::literal
v1 --"wdt:P279"--> c2
v1 --"wdt:P31"--> v3
bind0[/VALUES ?value/]
bind0-->v3
bind00(["wd:Q28640"])
bind00 --> bind0
bind01(["wd:Q41710"])
bind01 --> bind0
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end