query-1625bdab0244defc9228c09c9a6064a3
Dresdner Hefte als Übersicht nach Ausgabenr. SELECT ?item ?itemLabel ?pubdate ?k10 ?issue WHERE { ?item wdt:P31 wd:Q16324495. ?item wdt:P1433 wd:Q14916674. ?item wdt:P433 ?issue. ?item wdt:P577 ?pubdate. optional { ?item wdt:P6721 ?k10. } minus{ ?item wdt:P6721 []. } SERVICE wikibase:label { bd:serviceParam wikibase:language "de". } } ORDER BY ?pubdate
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#>
#Dresdner Hefte als Übersicht nach Ausgabenr.
SELECT ?item ?itemLabel ?pubdate ?k10 ?issue
WHERE
{
?item wdt:P31 wd:Q16324495.
?item wdt:P1433 wd:Q14916674.
?item wdt:P433 ?issue.
?item wdt:P577 ?pubdate.
optional {
?item wdt:P6721 ?k10.
}
minus{
?item wdt:P6721 [].
}
SERVICE wikibase:label { bd:serviceParam wikibase:language "de". }
} ORDER BY ?pubdate
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?issue"):::projected
v2("?item"):::projected
v4("?k10"):::projected
v1("?pubdate"):::projected
a1((" "))
c11(["de"]):::literal
c2(["wd:Q16324495"]):::iri
c9(["bd:serviceParam"]):::iri
c4(["wd:Q14916674"]):::iri
v2 --"wdt:P31"--> c2
v2 --"wdt:P1433"--> c4
v2 --"wdt:P433"--> v3
v2 --"wdt:P577"--> v1
subgraph optional0["(optional)"]
style optional0 fill:#bbf,stroke-dasharray: 5 5;
v2 -."wdt:P6721".-> v4
end
subgraph minus0["MINUS"]
style minus0 stroke-width:6px,fill:pink,stroke:red;
v2 --"wdt:P6721"--> a1
end
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c9 --"wikibase:language"--> c11
end