query-c5c7f13c966058fa435e22c3414ba0ff

rq turtle/ttl


Dresdner Unternehmen der Tabakindustrie (Headquarter)

----------------------------------------------------------

SELECT ?item ?itemLabel ?street ?coord ?founded ?dissolved WHERE { ?item wdt:P31 wd:Q4830453. ?item wdt:P159 wd:Q1731. ?item wdt:P452 wd:Q907703. ?item wdt:P571 ?inception. optional { ?item wdt:P576 ?dissolvedYear. } optional { ?item p:P159 [ pq:P625 ?coord; pq:P6375 ?street;]

}

BIND(str(YEAR(?inception)) AS ?founded) BIND(str(YEAR(?dissolvedYear)) AS ?dissolved) SERVICE wikibase:label { bd:serviceParam wikibase:language "de,en,[AUTO_LANGUAGE]". }

}

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#----------------------------------------------------------
#Dresdner Unternehmen der Tabakindustrie (Headquarter) 
#----------------------------------------------------------
SELECT ?item ?itemLabel ?street ?coord ?founded ?dissolved
WHERE 
{
  ?item wdt:P31 wd:Q4830453.
  ?item wdt:P159 wd:Q1731.
  ?item wdt:P452 wd:Q907703. 
  ?item wdt:P571 ?inception.
  optional {
    ?item  wdt:P576 ?dissolvedYear.
  }
  optional {
  ?item p:P159 [ pq:P625 ?coord; pq:P6375 ?street;]

    }
  BIND(str(YEAR(?inception)) AS ?founded)
  BIND(str(YEAR(?dissolvedYear)) AS ?dissolved)
  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; v4("?coord"):::projected v7("?dissolved"):::projected v3("?dissolvedYear") v6("?founded"):::projected v2("?inception") v1("?item"):::projected v5("?street"):::projected a1((" ")) c2(["wd:Q4830453"]):::iri c6(["wd:Q907703"]):::iri c13(["bd:serviceParam"]):::iri c4(["wd:Q1731"]):::iri c15(["de,en,#91;AUTO_LANGUAGE#93;"]):::literal v1 --"p:direct/P31"--> c2 v1 --"p:direct/P159"--> c4 v1 --"p:direct/P452"--> c6 v1 --"p:direct/P571"--> v2 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."p:direct/P576".-> v3 end subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; a1 -."p:qualifier/P625".-> v4 a1 --"p:qualifier/P6375"--> v5 v1 --"p:P159"--> a1 end bind0[/"str(year-from-dateTime(?inception))"/] v2 --o bind0 bind0 --as--o v6 bind1[/"str(year-from-dateTime(?dissolvedYear))"/] v3 --o bind1 bind1 --as--o v7 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c13 --"wikibase:language"--> c15 end