query-ad4838e211a6a981eb45e60484178306
Portuguese scientists SELECT ?item ?itemLabel WHERE { # human beings ?item wdt:P31 wd:Q5. # from Portugal ?item wdt:P27 wd:Q45. # with occupations which has a subclass of scientist ?item wdt:P106/wdt:P279* wd:Q901.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_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#>
# Portuguese scientists
SELECT ?item ?itemLabel
WHERE
{
# human beings
?item wdt:P31 wd:Q5.
# from Portugal
?item wdt:P27 wd:Q45.
# with occupations which has a subclass of scientist
?item wdt:P106/wdt:P279* wd:Q901.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
a1((" "))
c9(["bd:serviceParam"]):::iri
c7(["wd:Q901"]):::iri
c2(["wd:Q5"]):::iri
c11(["#91;AUTO_LANGUAGE#93;,en"]):::literal
c4(["wd:Q45"]):::iri
v1 --"wdt:P31"--> c2
v1 --"wdt:P27"--> c4
v1 --"wdt:P106"--> a1
a1 --"wdt:P279"--> c7
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end