query-1112236554be0ada205cd58d21083bfd

rq turtle/ttl

title: Syntopia-Artikel, chronologisch absteigend mit Schlagwort und verlinkten AutorInnen - bei Lücken sind Artikel zu bearbeiten SELECT ?article ?articleLabel ?pubDate ?mainSubject ?author WHERE {

?article wdt:P1433 wd:Q112206291; wdt:P577 ?pubDate. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } OPTIONAL { ?article wdt:P921 ?mainSubject. } OPTIONAL { ?article wdt:P50 ?author. } } ORDER BY DESC(?pubDate)

Use at

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: Syntopia-Artikel, chronologisch absteigend mit Schlagwort und verlinkten AutorInnen - bei Lücken sind Artikel zu bearbeiten
SELECT ?article ?articleLabel ?pubDate ?mainSubject ?author WHERE {

  ?article wdt:P1433 wd:Q112206291; wdt:P577 ?pubDate. 
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  OPTIONAL { ?article wdt:P921 ?mainSubject. }
    OPTIONAL { ?article wdt:P50 ?author. }
}
ORDER BY DESC(?pubDate)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?article"):::projected v4("?author"):::projected v3("?mainSubject"):::projected v1("?pubDate"):::projected c2(["wd:Q112206291"]):::iri c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v2 --"wdt:P1433"--> c2 v2 --"wdt:P577"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P921".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P50".-> v4 end