query-6a1c3993dd74e1547d94785b1e654a40
title:"Objekte" des GLAM-BW-Projects mit (de)-Wikipedia-Artikel SELECT DISTINCT ?item ?itemLabel ?wpPage WHERE { ?item wdt:P5008 wd:Q122901643; (wdt:P31/(wdt:P279+)) wd:Q386724. OPTIONAL { ?item wdt:P18 ?image. } ?wpPage schema:about ?item; schema:isPartOf https://de.wikipedia.org/ 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 schema: <http://schema.org/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:"Objekte" des GLAM-BW-Projects mit (de)-Wikipedia-Artikel
SELECT DISTINCT ?item ?itemLabel ?wpPage WHERE {
?item wdt:P5008 wd:Q122901643;
(wdt:P31/(wdt:P279+)) wd:Q386724.
OPTIONAL { ?item wdt:P18 ?image. }
?wpPage schema:about ?item;
schema:isPartOf <https://de.wikipedia.org/>
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;
v2("?image")
v1("?item"):::projected
v3("?wpPage"):::projected
a1((" "))
c9([https://de.wikipedia.org/]):::iri
c2(["wd:Q122901643"]):::iri
c11(["bd:serviceParam"]):::iri
c5(["wd:Q386724"]):::iri
c13(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"wdt:P5008"--> c2
v1 --"wdt:P31"--> a1
a1 --"wdt:P279"--> c5
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v1 -."wdt:P18".-> v2
end
v3 --"schema:about"--> v1
v3 --"schema:isPartOf"--> c9
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c11 --"wikibase:language"--> c13
end