query-b06d66d031648c63abdafa8f33456095

rq turtle/ttl

List of Grampanchayats in Kerala SELECT ?item ?ilml WHERE { ?item wdt:P31 wd:Q2732840; (wdt:P131*) wd:Q1186. OPTIONAL { ?item rdfs:label ?ilml. FILTER((LANG(?ilml)) = "ml") } }

Use at

PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
# List of Grampanchayats in Kerala
SELECT ?item ?ilml WHERE {
  ?item wdt:P31 wd:Q2732840;
    (wdt:P131*) wd:Q1186.
  OPTIONAL {
    ?item rdfs:label ?ilml.
    FILTER((LANG(?ilml)) = "ml")
  }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?ilml"):::projected v2("?item"):::projected c3(["wd:Q2732840"]):::iri c5(["wd:Q1186"]):::iri v2 --"wdt:P31"--> c3 v2 --"wdt:P131"--> c5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v2 -."rdfs:label".-> v1 end