query-d221cdfde4e577cfa63a2dd877da3f84
List of SCientists SELECT ?item ?itemLabel ?article WHERE { ?item wdt:P31 wd:Q5. ?item wdt:P27 wd:Q30. ?item wdt:P106 ?occupation. ?occupation wdt:P279 wd:Q901. ?article schema:about ?item. ?article schema:inLanguage "en". ?article schema:isPartOf https://en.wikipedia.org/. SERVICE wikibase:label { bd:serviceParam wikibase:language "en". } } GROUP BY ?item ?itemLabel ?article ORDER BY ?itemLabel LIMIT 1000
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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# List of SCientists
SELECT ?item ?itemLabel ?article WHERE {
?item wdt:P31 wd:Q5.
?item wdt:P27 wd:Q30.
?item wdt:P106 ?occupation.
?occupation wdt:P279 wd:Q901.
?article schema:about ?item.
?article schema:inLanguage "en".
?article schema:isPartOf <https://en.wikipedia.org/>.
SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
}
GROUP BY ?item ?itemLabel ?article
ORDER BY ?itemLabel
LIMIT 1000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?article"):::projected
v2("?item"):::projected
v1("?itemLabel"):::projected
v3("?occupation")
c4(["wd:Q30"]):::iri
c10(["en"]):::literal
c12([https://en.wikipedia.org/]):::iri
c14(["bd:serviceParam"]):::iri
c7(["wd:Q901"]):::iri
c2(["wd:Q5"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P27"--> c4
v2 --"wdt:P106"--> v3
v3 --"wdt:P279"--> c7
v4 --"schema:about"--> v2
v4 --"schema:inLanguage"--> c10
v4 --"schema:isPartOf"--> c12
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c14 --"wikibase:language"--> c10
end