query-fbb39b564a0c9297e655d3cad1ff4071

rq turtle/ttl

Jetz wird hier einiges doppelt gelistet, weil z.B. zwei Aussagen p31 oder bilder p18 da sind. Ich würde gerne alles mitnehmen und habe dazu wie oben ein GROUP CONCAT versucht - das aber einen Fehler wirft:

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX schema: <http://schema.org/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?item ?de_label ?dewiki_lemma ?blfdid ?denkmaltyp 

        (GROUP_CONCAT(?istein; SEPARATOR='|')  AS ?isteins)  
        (GROUP_CONCAT(?coords; SEPARATOR='|')  AS ?coords) 
        (GROUP_CONCAT(?commonscat; SEPARATOR='|')  AS ?commonscats) 
        (GROUP_CONCAT(?bild; SEPARATOR='|')  AS ?pics) 
        (GROUP_CONCAT(?listenlemma; SEPARATOR='|')  AS ?listlemmas) 

          WHERE {

  ?item wdt:P4244 ?blfdid .
  OPTIONAL {
    ?item wdt:P1435 ?denkmaltyp .
    ?item wdt:P31 ?istein .
    ?item wdt:P625 ?coords .
    ?item wdt:P373 ?commonscat .
    ?item wdt:P18 ?bild .
    ?item wdt:P2817 ?listenlemma .
    }

   OPTIONAL {
    ?item rdfs:label ?de_label .
    FILTER(LANG(?de_label) = 'de') .
  }
  OPTIONAL {
    ?sitelink schema:about ?item;
              schema:isPartOf <https://de.wikipedia.org/>;
              schema:name ?dewiki_lemma .
  }

  }

Query found at