query-4099f647d380277d7407613a934de581

rq turtle/ttl

Museums in Brazil without architect (P84)

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 ?museum ?museumLabel ?director_manager ?director_managerLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en,pt,pt-br". }
  ?museum (wdt:P31/(wdt:P279*)) wd:Q33506.
  FILTER(NOT EXISTS { ?museum wdt:P84 ?architect. })
  OPTIONAL { ?museum wdt:P17 ?country. }
  ?museum wdt:P17 wd:Q155.
  OPTIONAL { ?museum wdt:P1037 ?director_manager. }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?architect") v3("?country") v4("?director_manager"):::projected v1("?museum"):::projected a1((" ")) c3(["bd:serviceParam"]):::iri c8(["wd:Q33506"]):::iri c5(["#91;AUTO_LANGUAGE#93;,en,pt,pt-br"]):::literal c10(["wd:Q155"]):::iri f0[["not "]] subgraph f0e0["Exists Clause"] e0v1 --"wdt:P84"--> e0v2 e0v2("?architect"):::projected e0v1("?museum"):::projected end f0--EXISTS--> f0e0 f0 --> v1 f0 --> c1 f0 --> v2 v1 --"wdt:P84"--> v2 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c3 --"wikibase:language"--> c5 end v1 --"wdt:P31"--> a1 a1 --"wdt:P279"--> c8 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P17".-> v3 end v1 --"wdt:P17"--> c10 subgraph optional1["(optional)"] style optional1 fill:#bbf,stroke-dasharray: 5 5; v1 -."wdt:P1037".-> v4 end