query-c6619f058cc00e5e8e7565f7e3882082
Durch wen wurde Aristoteles beeinflusst? Who influenced Aristotele?
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#>
#defaultView:Graph
SELECT ?item ?itemLabel ?pic ?linkTo
WHERE {
wd:Q868 wdt:P737* ?item
OPTIONAL { ?item wdt:P737 ?linkTo }
OPTIONAL { ?item wdt:P18 ?pic }
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Query found at
- https://www.wikidata.org/wiki/User:Wiljes/2021-05-21_Kolloquium_Wissensinfrastruktur_UniBI
- https://www.wikidata.org/wiki/User:Wiljes/2021-06-24_Kolloquium_AG-SC
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?linkTo"):::projected
v3("?pic"):::projected
c5(["bd:serviceParam"]):::iri
c1(["wd:Q868"]):::iri
c7(["en"]):::literal
c1 --"wdt:P737"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P737".-> v2
end
subgraph optional1["(optional)"]
style optional1 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v3
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end