query-221f7f91eb7ca0167e6126628e584986
Naukowcy podlinkowani do strony na WP-PL (sitelink)
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?sitelink ?itemLabel WHERE {
?item wdt:P3124 ?scientist.
?sitelink schema:isPartOf <https://pl.wikipedia.org/>;
schema:about ?item.
SERVICE wikibase:label { bd:serviceParam wikibase:language "pl" } .
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item")
v2("?scientist")
v3("?sitelink"):::projected
c6(["bd:serviceParam"]):::iri
c3([https://pl.wikipedia.org/]):::iri
c8(["pl"]):::literal
v1 --"wdt:P3124"--> v2
v3 --"schema:isPartOf"--> c3
v3 --"schema:about"--> v1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end