query-2a70fb963db4b6f4ff72e72e02507573

rq turtle/ttl

TODO

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 DISTINCT ?object ?objectLabel ?museum ?museumLabel WHERE
  {
    ?museum wdt:P31/wdt:P279* wd:Q33506;
      wdt:P17 wd:Q40.
    ?object wdt:P276 ?museum.
    SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en". }
  }

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?museum"):::projected v2("?object"):::projected a1((" ")) c3(["wd:Q33506"]):::iri c8(["bd:serviceParam"]):::iri c5(["wd:Q40"]):::iri c10(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c3 v1 --"wdt:P17"--> c5 v2 --"wdt:P276"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c8 --"wikibase:language"--> c10 end