query-4f5b5f198bffb18ab6be23ba393a6796

rq turtle/ttl

als VALUES-Abfrage

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#>
SELECT ?item ?itemLabel ?datum
  WHERE {
  VALUES (?inceptions) {
    (wd:Q111709160)   # Verein für Geschichte und Topographie Dresdens und seiner Umgebung
    (wd:Q111243259)   # Verein für Geschichte Dresdens
    (wd:Q35906273)    # Dresdner Geschichtsverein
                      # Forschungsgruppe zur Kulturgeschichte des Dresdner Raumes
                      # weitere Ereignisse, Redakteure, Autoren und Hefte dann per UNION
  }
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de" }
  BIND(?inceptions as ?item) .
  ?item wdt:P571 ?datum.
} ORDER BY ?datum

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?datum"):::projected v2("?inceptions") v3("?item"):::projected c4(["de"]):::literal c2(["bd:serviceParam"]):::iri bind0[/VALUES ?inceptions/] bind0-->v2 bind00(["wd:Q111709160"]) bind00 --> bind0 bind01(["wd:Q111243259"]) bind01 --> bind0 bind02(["wd:Q35906273"]) bind02 --> bind0 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end bind1[/"?inceptions"/] v2 --o bind1 bind1 --as--o v3 v3 --"wdt:P571"--> v1