query-8dae93c7b02f29b20edd9d35ced800a6

rq turtle/ttl

coses amb municipi català sense instància de res

duplica municipi i comarca

SELECT ?item ?itemLabel ?mun ?munLabel ?llengua WHERE { ?item wdt:P131* ?mun. ?mun wdt:P4335 []. MINUS {?item wdt:P31 []} SERVICE wikibase:label {bd:serviceParam wikibase:language "ca, oc, en, es, fr".} }

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
# coses amb municipi català sense instància de res
# duplica municipi i comarca
SELECT ?item ?itemLabel ?mun ?munLabel ?llengua
WHERE {
  ?item wdt:P131* ?mun.
  ?mun wdt:P4335 [].
  MINUS {?item wdt:P31 []}
  SERVICE wikibase:label {bd:serviceParam wikibase:language "ca, oc, en, es, fr".}
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?item"):::projected v2("?mun"):::projected a1((" ")) a2((" ")) c5(["bd:serviceParam"]):::iri c7(["ca, oc, en, es, fr"]):::literal v1 --"wdt:P131"--> v2 v2 --"wdt:P4335"--> a1 subgraph minus0["MINUS"] style minus0 stroke-width:6px,fill:pink,stroke:red; v1 --"wdt:P31"--> a2 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end