query-f9f2d22df46cf5136e740f6169e570ac

rq turtle/ttl

seluruh kabupaten dan kabupaten administratif SELECT distinct ?Butir ?ButirLabel WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "id". } { {?Butir wdt:P31 wd:Q3191695.} UNION {?Butir wdt:P31 wd:Q11127777.} } }

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#>
# seluruh kabupaten dan kabupaten administratif
SELECT distinct ?Butir ?ButirLabel WHERE {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "id". }
  {
    {?Butir wdt:P31 wd:Q3191695.}
    UNION
    {?Butir wdt:P31 wd:Q11127777.}
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?Butir"):::projected c2(["bd:serviceParam"]):::iri c6(["wd:Q3191695"]):::iri c4(["id"]):::literal c7(["wd:Q11127777"]):::iri subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end subgraph union0[" Union "] subgraph union0l[" "] style union0l fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P31"--> c7 end subgraph union0r[" "] style union0r fill:#abf,stroke-dasharray: 3 3; v1 --"wdt:P31"--> c6 end union0r <== or ==> union0l end