query-2804dda15538b4de4f596b64c748cefa
title: Objekte mit Verweis auf Beschreibung in BiB (P1343 od. P973) SELECT DISTINCT ?place ?placeLabel WHERE { { ?place wdt:P1343 wd:Q111792585 . } UNION { ?place wdt:P973 ?url . FILTER (STRSTARTS(STR(?URL), "https://bildhauerei-in-berlin.de/") ) }
SERVICE wikibase:label { bd:serviceParam wikibase:language "de" . } }
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#>
#title: Objekte mit Verweis auf Beschreibung in BiB (P1343 od. P973)
SELECT DISTINCT ?place ?placeLabel WHERE {
{
?place wdt:P1343 wd:Q111792585 .
} UNION {
?place wdt:P973 ?url .
FILTER (STRSTARTS(STR(?URL), "https://bildhauerei-in-berlin.de/") )
}
SERVICE wikibase:label {
bd:serviceParam wikibase:language "de" .
}
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?URL")
v1("?place"):::projected
v3("?url")
c8(["de"]):::literal
c2(["wd:Q111792585"]):::iri
c6(["bd:serviceParam"]):::iri
subgraph union0[" Union "]
subgraph union0l[" "]
style union0l fill:#abf,stroke-dasharray: 3 3;
f0[["starts-with(str(?URL),'https://bildhauerei-in-berlin.de/')"]]
f0 --> v2
v1 --"wdt:P973"--> v3
end
subgraph union0r[" "]
style union0r fill:#abf,stroke-dasharray: 3 3;
v1 --"wdt:P1343"--> c2
end
union0r <== or ==> union0l
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end