query-d5caa19acd4f1fc096be13697308cb65

rq turtle/ttl

Anzahl der Ergebnisszeilen

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Table
SELECT DISTINCT ?item ?itemLabel ?itemDescription ?Steuernummer ?rechtsformLabel ?adresse ?street ?streetLabel ?coordinate ?image
WHERE {
  ?item wdt:P159 wd:Q1731.                    # hat Hauptverwaltung in Dresden
  OPTIONAL { ?item wdt:P18 ?image. }          # Bild
  ?item rdfs:label ?name 
  FILTER(REGEX(STR(?name), "Flu"))            # Filter für Name
  SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?image"):::projected v2("?item"):::projected v1("?name") c7(["bd:serviceParam"]):::iri c3(["wd:Q1731"]):::iri c9(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal f0[["regex(str(?name),'Flu')"]] f0 --> v1 v2 --"wdt:P159"--> c3 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."wdt:P18".-> v3 end v2 --"rdfs:label"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end